$(document).ready(function(){
  
  // close all menu
  $('.menu_top ul li').find('ul').slideUp();
  
  // set expanded menu
  $("#top_menu_actual").find('ul').stop(true, true);
  $("#top_menu_actual").find('ul').slideDown();
  
  // slide down on hover
  $('.menu_top ul li').hover(
    function() {
      $(this).find('ul').stop(true, true);
      $(this).find('ul').slideDown();
    },
    function() {
      if (!$(this).hasClass("active")) $(this).find('ul').slideUp('fast');
    }
  );
  
});
