//Navigation
var $j = jQuery.noConflict();
$j(document).ready(function() {

	$j("div.dropdown").css({'opacity' : '0.95','filter' : 'alpha(opacity=95)'});
						  
	function addMega(){ 
		$j($j(this).find("a")).addClass("hover"); 
		$j($j(this).find("div.dropdown")).fadeIn("normal"); 
		$j(this).addClass("hovering"); 
		} 
	
	function removeMega(){ 
		$j($j(this).find("a")).removeClass("hover"); 
		$j($j(this).find("div.dropdown")).fadeOut("normal"); 
		$j(this).removeClass("hovering"); 
		} 

    var megaConfig = {
         interval: 250,
         sensitivity: 4,
         over: addMega,
         timeout: 250,
         out: removeMega
    };

    $j("li.mega").hoverIntent(megaConfig)

      
    });


