$(document).ready(function(){
	
	$('#lowerNav > ul > li').hover(function(){
		$(this).find("ul").show();
		$(this).addClass("hover");
	}, function(){
		$(this).find("ul").hide();
		$(this).removeClass("hover");
	});
});
