

// Handles the fade in of the "main content" section on every page

$("document").ready(function() {
	$("#exhibitions").css("display", "none");
	$("#collections").css("display", "none");
});


function switchContent(content) {
	// Hide all content
	$("#education").css("display", "none");
	$("#exhibitions").css("display", "none");
	$("#collections").css("display", "none");
	// Show selected content
	$("#"+content).fadeIn("slow");
	
	//Update the subnav
	$("li#educationSubnav").removeClass("currentPage");
	$("li#exhibitionsSubnav").removeClass("currentPage");
	$("li#collectionsSubnav").removeClass("currentPage");
	// Show selected content
	$("#"+content+"Subnav").addClass("currentPage");
}
