var megaConfig = {    
     interval: 100,
     sensitivity: 4,
     over: addMega, 
     timeout: 100,
     out: removeMega
};

jQuery(document).ready(function(){
    $("ul#nav li ").hoverIntent(megaConfig);
    $("ul#tabs li ").hoverIntent(megaConfig);
});

function addMega() {
    //$(this).find("a").eq(0).addClass("s");
    $("div",$(this)).show();
}

function removeMega() {
    //$(this).find("a").eq(0).removeClass("s");
    $("div",$(this)).hide();
}
