
	function doMenu(sUrl)
	{
		var sServerPath = "http://www.champlaininamerica.org"
		var sLocation = String(window.location);
		var sLocation2 = sLocation.replace(sServerPath, "");
	
			if(sUrl != sLocation2)
			{
				$('#container_content').fadeTo(1000, 0.01, function()
				{
						window.location = sUrl;
				});
			}

	}
	
	
	$(document).ready(function()
	{
		
		$('#container_content').fadeTo(1,0, function()
		{
			$('#container_content').css('visibility', 'visible');
			$('#container_content').fadeTo(1000,1);
		});			

		// The film
		$('#theFilmSub').css('display', 'none');
		$('#theFilmLi').mouseenter(function()
		{
			
			$('#theFilmSub').slideDown('slow');	
		});
		
		$('#theFilmLi').mouseleave(function()
		{
			
			$('#theFilmSub').slideUp('slow');	
		});
		
		// Behind the Scene
		$('#behindTheSceneSub').css('display', 'none');
		$('#behindTheSceneLi').mouseenter(function()
		{
			
			$('#behindTheSceneSub').slideDown('slow');
			
		});
		
		$('#behindTheSceneLi').mouseleave(function()
		{
			
			$('#behindTheSceneSub').slideUp('slow');
		});
		
		// Educators
		$('#educatorsSub').css('display', 'none');
		$('#educatorsLi').mouseenter(function()
		{
			
			$('#educatorsSub').slideDown('slow');	
		});
		
		$('#educatorsLi').mouseleave(function()
		{
			
			$('#educatorsSub').slideUp('slow');	
		});


	});


