$(document).ready(function(){
  
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^ dropdown ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */


  $('#menu li ul').css({
    display: "none",
    left: "auto"
  });
  $('#menu li').hover(function() {
    $(this)
      .find('ul')
      .stop(true, true)
      .slideDown('slow');
  }, function() {
    $(this)
      .find('ul')
      .stop(true,true)
      .fadeOut('slow');
 
});


  
});

