jQuery(document).ready(function()
{
	// !Menu top
  jQuery('#menu li ul').css({
    display: "none",
    left: "auto"
  });
  jQuery('#menu li').hover(function() {
    jQuery(this)
      .find('ul')
      .stop(true, true)
      .slideDown('fast');
  }, function() {
    jQuery(this)
      .find('ul')
      .stop(true,true)
      .fadeOut('fast');
  });
});
