function showID(id) {
	document.getElementById(id).style.display = "block";
}
function hideID(id) {
	document.getElementById(id).style.display = "none";
}

function overM0(id, next) {
	document.getElementById("m0-lc"+id).style.background = "url(/img/m0/lc.gif) no-repeat 0px 0px";
	document.getElementById("m0-rc"+id).style.background = "url(/img/m0/rc.gif) no-repeat 100% 0px";
	if (document.getElementById("m0-it"+next)) document.getElementById("m0-it"+next).style.background = "url(/img/m0/nosep.gif) no-repeat left top";
}
function outM0(id, next) {
	document.getElementById("m0-lc"+id).style.background = "url(/img/m0/lc.gif) no-repeat 0px 40px";
	document.getElementById("m0-rc"+id).style.background = "url(/img/m0/rc.gif) no-repeat 100% 40px";
	if (document.getElementById("m0-it"+next)) document.getElementById("m0-it"+next).style.background = "url(/img/m0/bg.gif) no-repeat left top";
}

