// JavaScript Jquery Mega Drop-Down Menu
//use jQuery via $j for no conflict with prototype 
  var $j = jQuery.noConflict();

    $j(document).ready(function() {
      
      function addMega(){
        $j(this).addClass("hovering");
        }

      function removeMega(){
        $j(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 50,
         sensitivity: 2,
         over: addMega,
         timeout: 100,
         out: removeMega
    };

    $j("li.mega").hoverIntent(megaConfig);

    $j("li.mega2").hoverIntent(megaConfig);  
    });