// JavaScript Document
function showEvent(eventID) {
	document.getElementById(eventID).style.display='block';
}
function hideEvent(eventID) {
	document.getElementById(eventID).style.display='none';
}
function showRo(monthID) {
	document.getElementById(monthID).style.backgroundColor='#F3F946';
}
function hideRo(monthID) {
	document.getElementById(monthID).style.backgroundColor='#FFF2B0';
}

function iOver(id,s) {
	document.getElementById(id).src="i2/btn_"+id+"_"+s+".jpg";
}