function disableRightClick(e) {
	
	if (typeof e.onselectstart!="undefined")e.onselectstart=function(){return false}
	else if (typeof e.style.MozUserSelect!="undefined") e.style.MozUserSelect="none"
	else e.onmousedown=function(){return false}
}

(function(){
	$(document).ready(function(){ 
		function disalbleRighClick(e){
			if (typeof e.onselectstart!="undefined")e.onselectstart=function(){return false}
			else if (typeof e.style.MozUserSelect!="undefined") e.style.MozUserSelect="none";
			else e.onmousedown=function(){return false}	
		}
		
		$(document).bind("contextmenu",function(e){
			e.preventDefault();
			return false;
		});
		
		disalbleRighClick(document.body);
	})
})(jQuery)
