$(".nav li").hover(function(){
	$(this).children("div").stop(true,true).slideDown(200)
},function(){
	$(this).children("div").stop(true,true).slideUp(200)
})
