	//<![CDATA[
    $(document).ready(function() {
      
      function addMega(){
        $(this).addClass("hovering");
		$('li.mega a').addClass("over"); 
		$('li.mega a:first').css("color","#12247A"); // add permanent white color to conference link ONLY
												  // to hold until megamenu rolled off
     
        }

      function removeMega(){
       $(this).removeClass("hovering");
		$('li.mega a').removeClass("over");
		$('li.mega a:first').css("color", ''); //remove permanent white color to link
		
		}

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

    	$("li.mega").hoverIntent(megaConfig)
	
      
    });
    //]]>

