jQuery.noConflict();
jQuery(document).ready(function() {

      function addMega(){
			jQuery(this).addClass("megahover");
			jQuery(this).children('div').slideDown('fast', function() {
			});
        }

      function removeMega(){
			jQuery(this).removeClass("megahover");	
			jQuery(this).children('div').slideUp('fast', function() {
			});
        }

    var megaConfig = {
         interval: 100,
         sensitivity: 4,
         over: addMega,
         timeout: 200,
         out: removeMega
    };

    jQuery("li.mega").hoverIntent(megaConfig)

});
