$(document).ready(function(){
	
	$('#nav ul li').hover(function () {
		$(this).children('ul').stop(false, true).slideDown();
		}, function () {
		$(this).children('ul').stop(false, true).slideUp();
	});
	

});
