function navControl()
{
	$('#mainNav img').hide();
	$('#mainNav li ul').hide();
	
	$('#mainNav li').hover(
	function()
		{
			$(this).find('img').stop(true, true).fadeIn(700);
			$(this).find('ul').stop(true, true).delay(200).slideDown(500);
			
		},function()
		{
			$(this).find('img').stop(true, true).fadeOut(700);
			$(this).find('ul').stop(true, true).delay(200).slideUp(200);
		}
	);	
}

function getPW()
{
	
	var pWord = $("#pw").val();
	
	
	if(pWord == "ds")
	{
		window.location.replace('superSecretPage.html');
	}
	else
	{
		alert("beat it!");	
	}
	
	

		//$('body').hide();
		//window.location.replace('http://www.zilch.com/');
	
}

$(document).ready(function()
{
	$('#secretStuff').hide();
	navControl();
	$('#sideBar').hide();
});
