// JavaScript Document

	var $j = jQuery.noConflict();
	
    $j(document).ready(function() {
      
      function addMega(){
        $j(this).addClass("hovering");
        }

      function removeMega(){
        $j(this).removeClass("hovering");
        }

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

    $j("li.mega").hoverIntent(megaConfig)

      
    });
