function ActivateLocationPage()
{
	if ( location.href.indexOf( "action=demos" ) > 0 )
	{
		if ( document.getElementById( "demosdiv" ) != null )
			document.getElementById( "demosdiv" ).style.display = '';
			
		document.getElementById( "location-demos" ).style.background = '#fff';
	}
	else if ( location.href.indexOf( "action=calendar" ) > 0 )
	{
		document.getElementById( "calendardiv" ).style.display = '';
		document.getElementById( "location-calendar" ).style.background = '#fff';
	}
	else if ( location.href.indexOf( "action=schedules" ) > 0 )
	{
		if ( document.getElementById( "schedulesdiv" ) != null )
			document.getElementById( "schedulesdiv" ).style.display = '';
		document.getElementById( "location-schedules" ).style.background = '#fff';
	}
	else if ( location.href.indexOf( "action=contact" ) > 0 )
	{
		document.getElementById( "contactdiv" ).style.display = '';
		document.getElementById( "location-contact" ).style.background = '#fff';
	}
	else
	{
		$("#locationsdiv").css( "display", "" );
		document.getElementById( "location-locations" ).style.background = '#fff';
	}
}

ActivateLocationPage();

