
	(function($) {
	  $.fn.nocopy = function() {
	    
	    return this.each(function() {
	      var $this = $(this);
	      $this.rightClick( function(e) {});
	      //$this.mousedown(function() {return false;});
	      $this.bind('selectstart', function() {return false;});
	      $this.css({'MozUserSelect':'none','cursor':'default'}).attr("unselectable","on");
	    }
	    )
	  };
	
	$.fn.rightClick = function(handler) {
		$(this).each( function() {
			$(this).mousedown( function(e) {
				var evt = e;
				$(this).mouseup( function() {
					$(this).unbind('mouseup');
					if( evt.button == 2 ) {
						handler.call( $(this), evt );
						return false;
					} else {
						return true;
					}
				});
			});
			$(this)[0].oncontextmenu = function() {
				return false;
			}
		});
		return $(this);
	}
	})(jQuery);



	$(document).ready(function(){
	    $(document).bind("contextmenu",function(e){
	        return false;
	    });
        $('#central-content').nocopy();
	    $('#main-content').nocopy();
	    $('#images-box').nocopy();
	    $('#menu-inline').nocopy();
	    $('#main-content-products').nocopy();
	    
	});


