var $j = jQuery.noConflict();

$j(document).ready(function() {
	var megaConfig = {    
		interval: 200,
		sensitivity: 4,
		over: addMega,
		timeout: 500,
		out: removeMega
	};

	$j('li.mega').hoverIntent(megaConfig);
	
	function addMega() {
		$j(this).children().show(250);
	};

	function removeMega() {
		$j(this).children("div").hide(250);
	};
	
/*	// Expand Panel
	$j("#open").click(function(){
		$j("div#panel").slideDown("slow");	
	});	
 
	// Collapse Panel
	$j("#close").click(function(){
		$j("div#panel").slideUp("slow");	
	});		
 
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$j("#toggle a").click(function () {
		$j("#toggle a").toggle();
	});*/
});