/*
Last edit: February 2009
Javascript developped by Sofia Shendi
For more info: http://www.sofiashendi.com
*/

var oldEvent = 'default';

function showEvent(newEvent) {
	if (newEvent == oldEvent) return;
	document.getElementById(oldEvent).style.display = 'none';
	document.getElementById(newEvent).style.display = '';
	oldEvent = newEvent;
}

