$(document).ready(
	function() {
		jQuery.fn.extend({ 
			disableSelection : function() { 
				this.each(function() { 
					this.onselectstart = function() { return false; }; 
					this.unselectable = "on"; 
					jQuery(this).css('-moz-user-select', 'none'); 
				}); 
			} 
		});
		
		$cialo = $('body');
		$cialo.css('display','block');
		$cialo.disableSelection();
		$cialo.bind('copy',function(e) { 
			alert('Nie można wykonać tej operacji!');
			e.preventDefault();
		});
		
		if(window.opera)
		{
			$cialo.bind('mousedown',function(e){
				e.preventDefault();
			});
		}
	}
);
