/* Superfish dropdown menus. Please note that the script below
will not work with the original Superfish js file.
The one used for this site was monified by the Mouse. */


$(document).ready(function(){
	
	/*$("body:not(#s-home) #primary-nav").superfish({*/
	$("#primary-nav").superfish({
		delay		: 50,
		animationOver	: {opacity:"show",top:"47"},
		animationOut	: {opacity:"hide",top:"0"},
		speed			: 250
	})	
			
		
	.find(">li:has(ul)").mouseover(function() {
		$("ul", this).bgIframe({opacity:false});
	})

	.find("a").focus(function() {
		$("ul", $(".nav>li:has(ul)")).bgIframe({opacity:false});
	});

	$("#primary-nav ul li:last-child").addClass("last");
	$("#primary-nav ul li:first-child").addClass("first");
	
});
