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

/* ----------------------------------
	NAV
----------------------------------- */

// Funciones
function showNav(){
	  $(this).addClass("hover");
	  $(this).find("div").show("fast");
}

function hideNav(){
	  $(this).removeClass("hover");
	  $(this).find("div").hide("fast");
}

// Configuración
var navConfig = {    
  interval: 30,
  sensitivity: 10,
  over: showNav,
  timeout: 200,
  out: hideNav
};

$(document).ready(function() {
$("#nav ul li").hoverIntent(navConfig);
}); // ready