var lastStateID = null;
var lastSectionID = null;

function showLocations( stateID ) {
	if( lastStateID ) {
		addClass( grabElement( "state_" + lastStateID ), "hide" );
	}
	
	if( grabElement( "state_" + stateID ) ) {
		removeClass( grabElement( "state_" + stateID ), "hide" );
		lastStateID = stateID;
	} else {
		removeClass( grabElement( "state_None" ), "hide" );
		lastStateID = "None";
	}
}

function showInfo( sectionID ) {
	if( lastSectionID ) {
		addClass( grabElement( lastSectionID ), "hide" );
	}
	
	if( grabElement( sectionID ) ) {
		removeClass( grabElement( sectionID ), "hide" );
		lastSectionID = sectionID;
	} else {
		lastSectionID = "None";
	}
}

windowObject.addLoadFunction( rotateHomeBanner );

function rotateHomeBanner() {
	if( document.body.className == "Home" ) {
		var random_number = Math.floor( Math.random() * 3 ) + 1;
		grabElement("pageHeaderOuter").style.backgroundImage = "url( App_Themes/Default/Assets/img/homepage/homepage_headerimg" + random_number + ".jpg )";
	}
}
