/*$(".menuBox ul li").hover(function() { //When trigger is clicked...
				
	$(this).find("ul.submenu").slideDown('fast').show();

	$(this).hover(function() {
	}, function(){	
		$(this).find("ul.submenu").slideUp('fast'); //When the mouse hovers out of the subnav, move it back up
	});

	
	}).hover(function() { 
		//$(this).addClass("subhover");
	}, function(){	//On Hover Out
		//$(this).removeClass("subhover");
});*/
