// JScript source code


function ShowEvents() {
	document.getElementById( "SpotlightContent" ).style.display = 'none';
	document.getElementById( "EventsContent" ).style.display = 'block';
	
	document.getElementById( "SpotlightLink" ).innerHTML = '<a href="javascript:ShowSpotlight();">Spotlight</a>';
	document.getElementById( "EventsLink" ).innerHTML = 'Events';
}

function ShowSpotlight() {
	document.getElementById( "SpotlightContent" ).style.display = 'block';
	document.getElementById( "EventsContent" ).style.display = 'none';
	
	document.getElementById( "SpotlightLink" ).innerHTML = 'Spotlight';
	document.getElementById( "EventsLink" ).innerHTML = '<a href="javascript:ShowEvents();">Events</a>';
}
