
	var megaSel = null;
	var megaIndex = null;
	var megaCount = 0;

	var megaTimer = null;

	function addMega()
	{
		$($(this).find("div.menu")).slideDown(1000);
		$($(this).find("div.menu")).fadeIn("slow");
	}

	function removeMega()
	{
		$($(this).find("div.menu")).slideUp(300);
		$($(this).find("div.menu")).fadeOut("slow");
	}


$(document).ready(function()
{

	if ($("#hoverBoxer div.sideBar ol li").length)
	{
		$("#hoverBoxer div.sideBar ol li").mouseover(function()
		{
			var id = $(this).index();

			$("#hoverBoxer div.sideBar ol li a").removeClass("selected");
			$(this).find("a").addClass("selected");

			$("ol.content li").removeClass("selected");
			$("ol.content li").eq(id).addClass("selected");
		});
	}


		var megaConfig =
		{
			interval: 200,
			sensitivity: 2,
			over: addMega,
			timeout: 200,
			out: removeMega
		};

		$("li.drop").hoverIntent(megaConfig);

});