$(".nav>li").hover(function(){
$(this).children(".subNav").stop().animate({"height":"120px"},500)
},function(){
$(this).children(".subNav").stop().animate({"height":"0px"},500)
})
}