function toggleEventDetails(id){
	if (document.getElementById){
		// show and hide detials div
		x = document.getElementById(id);
		if (x.className == 'displaydetails'){
			x.className = 'hidedetails';
		} else {
			x.className = 'displaydetails';
		}
		
		// change out the detail/close image
		var combinedID = 'detailLink_'+id;
		a = document.getElementById(combinedID);
		if (a.className == 'detailsLinkDetails'){
			a.className = 'detailsLinkClose';
		} else {
			a.className = 'detailsLinkDetails';
		}
	}
}

function hideEvent(id){
	if (document.getElementById){
		if(x = document.getElementById(id)){
			x.className = 'hidedetails';
		}
	}
}