//<![CDATA[
$(document).ready(function() {
  
function addMega(){
	$('#about').addClass("hovering");
	// $("#content").fadeTo(100, 0.60);
	// hide slideshow if mouse is over "about" nav (for IE)
	// $("#tst").hide();
}

function removeMega(){
	$('#about').removeClass("hovering");
	// $("#content").fadeTo(100, 100);
	// show slideshow if mouse is no longer over "about" nav (for IE)
	// $("#tst").show();
}

function addMega2(){
   $('#media').addClass("hovering");
   // $("#content").fadeTo(100, 100);
}

function removeMega2(){
    $('#media').removeClass("hovering");
	// $("#content").fadeTo(100, 100);
}

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

var megaConfig2 = {
     interval: 100,
     sensitivity: 4,
     over: addMega2,
     timeout: 100,
     out: removeMega2
};

$("li.about-mega").hoverIntent(megaConfig)
// $("li.mega").hoverIntent(megaConfig2)    
  
});


//]]>
