//<![CDATA[
		$(document).ready(function() {
		  
		 function addMega(){
         	 $(this).children('div').animate({
      		"opacity": "toggle"
    		}, { duration: 200 });
			}

         function removeMega(){
            $(this).children('div').animate({
      		"opacity": "toggle"
    		}, { duration: 200 });
            }

		var megaConfig = {
			 interval: 25,
			 sensitivity: 7,
			 over: addMega,
			 timeout: 100,
			 out: removeMega
		};
	 
		$("li.mega").hoverIntent(megaConfig)
	 	
		<!-- Accordion -->
		$("dd:not(:first)").hide();
	    $("dt a").click(function(){
			   $("dd:visible").slideUp(200);
			   $(this).parent().next().slideDown(200) ;
			   
			   return false;
	    });<!-- #Accordion -->

		  
		});
		//]]>
