/* DISEÑO WEB: http://www.tripulacionweb.com */

/* -----------------------------------------------------
	MENÚ DE NAVEGACIÓN (MEGA-MENUS)
-------------------------------------------------------- */

// Funciones
function showMega(){
  $(this).addClass("hovering"); // <-- Añadimos clase (display:block)
  $(this).find("a:first").addClass("onrollover"); // <-- Dejamos el boton "presionado"
}

function hideMega(){
  $(this).removeClass("hovering"); // <-- Removemos clase (display:none)
  $(this).find("a:first").removeClass("onrollover"); // <-- Dejamos el boton "sin presionar"
}

// Configuración
var megaConfig = {    
  interval: 200,
  sensitivity: 10,
  over: showMega,
  timeout: 200,
  out: hideMega
};

$(document).ready(function() {
$("li.mega").hoverIntent(megaConfig);
}); // ready

