/*
Cufon.replace('h1,h2, h3, h4');
Cufon.replace('h3', {
		textShadow: '0 -1px rgba(0,0,0,.3)',
});
*/

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

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


$(function() { 
    $("li.mega").hoverIntent(megaConfig);
});




