$(function() {
		   
	// Drop Down Menu
	$('ul.sf-menu').superfish({ 
		delay:       200,
		animation:   {'marginLeft':'0px',opacity:'show'},
		speed:       'fast',
		onBeforeShow: function(){ this.css('marginLeft','20px'); }, 			
		autoArrows:  true,
		dropShadows: false
	});
	
	// Disable text selection
	if(typeof document.body.onselectstart != "undefined") {
		document.body.onselectstart = function(){ return false; };
	}
	else if(typeof document.body.style.MozUserSelect != "undefined") {
		document.body.style.MozUserSelect = "none";
	}
	else {
		document.body.onmousedown = function(){ return false; };
		document.body.style.cursor = "default";
	}
	
	// Right click message
	document.body.oncontextmenu = function()
	{
		alert('All Content Copyright 2010 Genesis Photography.');
		return false;
	};
});
