//Author: Travis Dent for Crux Studio
//Created: June 7, 2007
//Last Updated: June 7, 2007
//Requires MooTools 1.1

function showSection( sectionName ){
	//Hide others.
	$$( ".content" ).addClass("hidden");
	//Show section.
	$( sectionName + "_content" ).removeClass( "hidden" );
}
