$(function(){

// Nav Slider
jQuery('.nav').hover(function(){
jQuery(".subnav", this).stop().animate({top:'40px'},{queue:false,duration:200});
}, function() {
jQuery(".subnav", this).stop().animate({top:'-250px'},{queue:false,duration:200});
});


});
