$(function(){ //START JQUERY
	
	$("#top-nav li li").fadeOut(0);
	
	//On mouse over, show sub navs
	$("#top-nav li").hover(
		function(){
			$(this).find('li').stop(true, true).fadeIn(300);
		},
		function(){
			$(this).find('li').stop(true, true).fadeOut(300);
		}
	);
	
});