$(function() {
	$(document).ready(function(){ 
	
		$('html').removeClass('no-js').addClass('js');
	
		var timer;
		
		/* 
		$(document).bind("contextmenu",function(e){  
				
			//Check if the element exists, if not create it
			if ($('#no-right-click').length == 0) { 
				$('body').append('<div id="no-right-click"></div>');
			}
			
			clearTimeout(timer)
			$('#no-right-click').stop().css({'left':e.pageX,'top':e.pageY,'display':'block','opacity':'1'});

			timer = setTimeout(
				"$('#no-right-click').fadeOut()"
			, 1000)
			
			e.preventDefault();  
		});  
		*/
	});
});
