jQuery('document').ready(function(){
	$('#nav ul li').bind("mouseenter",function(e){
		$(this).children('ul').show();
	}).bind("mouseleave",function(e){
		$(this).children('ul').hide();
	});
});

