		$(function(){	
			$('#nav > li').mouseenter(function(){
				$(this).children('ul').show();
				}).mouseleave(function(){
					$(this).children('ul').hide();
				}).mouseover(function(){
				$(this).children('ul').show();
				});
			$('#nav li ul').mouseenter(function(){
				$(this).show();
				}).mouseleave(function(){
					$(this).hide();
				})
			});

