function showEventsList(){
	document.getElementById("eventsList").className = "visible";
	document.getElementById("eventsListUL").className = "visible";
}

function hideEventsList(){
	document.getElementById("eventsList").className = "hidden";
	document.getElementById("eventsListUL").className = "hidden";
}

    //Popups
    
function showPopup(name){
	$("#"+name).show();
} 

function hidePopup(name){
	$("#"+name).hide();
}       