var index = 0;

function init()
{
	$("ul").filter(".cascade").children("li").hide();
	$("ul").filter(".cascade").children("li").children("a").css("background-color","#ffff00");
	
	$("ul").filter(".nav").children("li").children("a").hover(function(){
		$(this).animate({backgroundColor:'#ffff00'},'fast');
	},function(){
		$(this).animate({backgroundColor:'#ffffff'},'fast');
	});
	
	$("div").filter(".content").hide();
	
	if (document.getElementById("exhibitNav") || document.getElementById("artNav") || document.getElementById("shopNav"))
	{
			$("#content").width(335);
	}
	
	initAnimation();
}

function initAnimation()
{
	
	if ((document.getElementById("mainNav") || document.getElementById("exhibitNav") || document.getElementById("artNav") || document.getElementById("shopNav")) && !document.getElementById("content"))
	{
		
		if ( index < $("ul").filter(".cascade").children("li").length )
		{
			obj = $("ul").filter(".cascade").children("li")[index];
			$(obj).SlideInDown(250);
			$(obj).children("a").animate({backgroundColor:'#ffffff'},'slow');
			index++;
			setTimeout(initAnimation, 100);
		}
		else
		{
			$("div").filter(".content").BlindDown(1000);
		}
	}
	else
	{
		$("ul").filter(".cascade").children("li").show();
		$("ul").filter(".cascade").children("li").children("a").css("background-color","#ffffff");
		$("div").filter(".content").BlindDown(1000);
	}
}

$(document).ready(init);