// When the page loads do the following:

$(document).ready(function()
{
	$(".contentFade").hide();
	// load index page when the page loads
	$(".contentFade").fadeIn("fast");
	$(".nav").click(function(){
	// load home page on click
		$(".contentFade").fadeOut("slow");
	});
	
});

