
// jQuery on window load
$(document).ready(function()
{
	// Make the container visible
	$("#container").show();
	
	// Handle the notification divs
	$("#aboutme_link").fadeIn();
	$("#aboutme_link").click(function()
	{
		$("#aboutme_link").hide();
		$("#aboutme_contents").slideToggle();
	});
	
	$("#aboutme_contents").click(function()
	{
		$("#aboutme_contents").slideToggle();
		$("#aboutme_link").fadeIn();		
	});
	
	// Add the even t listeners
	$("#h3_facts").click(function() 
	{
		$("#facts").slideToggle();
	});
	
	$("#h3_explore").click(function() 
	{
		$("#explore").slideToggle();
	});
	
	$("#h3_experiments").click(function() 
	{
		$("#experiments").slideToggle();
	});
});

