jQuery(function(){
    jQuery(".submenu").css('display','none');
    jQuery(".dropdown").toggle(function(){
    
      jQuery(".submenu").fadeIn(500);},
      
      function(){jQuery('.submenu').fadeOut(500);})
      

    
});
