// Skin Specific JS goes here. The jQuery library has already been loaded by the core templates. So if you use jQuery, you are ready to go.

jQuery(document).ready(function(){

	//alert("foo");
	
	$("ul.nav li").hover(function() { 		
			$(this).find("ul.subnav").show(); //Drop down the subnav on hover
		}, function(){
			$(this).find("ul.subnav").hide(); //When the mouse hovers out of the subnav, move it back up
		});

});
