jQuery(function(){

	//desabilita o botao direito do mouse
    jQuery(document).bind("contextmenu",function(e){
		return false;
	});
    
	jQuery(document).bind('keydown', 'Ctrl+c',function (event){
		event.preventDefault(event);
		return false; 
	});
	
});