function switchMe(id) {
	tdid = "td_"+id;
	x = document.getElementById(tdid);
	if (x.className == "menu_td") { x.className = "menu_td_over"; } else { x.className = "menu_td"; }
}

function showhide(id2show, id2hide) {
document.getElementById(id2show).style.display = 'block';
document.getElementById(id2hide).style.display = 'none';
}

