function overM1(id) {
	document.getElementById("m1left"+id).style.background = "url(images/left.gif) no-repeat left -25px";
	document.getElementById("m1right"+id).style.background = "url(images/right.gif) no-repeat right -25px";
	document.getElementById("href"+id).style.color = "#414141";
	if (document.getElementById("drop"+id) && alias1 != 'prod') document.getElementById("drop"+id).style.display = "block";
}

function outM1(id) {
	document.getElementById("m1left"+id).style.background = "url(images/left.gif) no-repeat left 0px";
	document.getElementById("href"+id).style.color = "#fff";
	document.getElementById("m1right"+id).style.background = "url(images/right.gif) no-repeat right 0px";
	if (document.getElementById("drop"+id) && alias1 != 'prod') document.getElementById("drop"+id).style.display = "none";
}

function overM2(id) {
	document.getElementById("m2dropr"+id).style.background = "url(images/m2dropron.gif) no-repeat right ";
	document.getElementById("m2dropl"+id).style.background = "url(images/m2droplon.gif) no-repeat left";
}

function outM2(id) {
	document.getElementById("m2dropr"+id).style.background = "url(images/m2dropr.gif) no-repeat right";
	document.getElementById("m2dropl"+id).style.background = "url(images/m2dropl.gif) no-repeat left";
}

function overM1a(id) {
	if (document.getElementById("drop"+id))
	document.getElementById("drop"+id).style.display = "block";
}

function outM1a(id) {
	if (document.getElementById("drop"+id))
	document.getElementById("drop"+id).style.display = "none";
}

function overCronics(id) {
	obj = document.getElementById(id);
	obj.style.display = "block";
}

function outCronics(id) {
	obj = document.getElementById(id);
	obj.style.display = "none";
}

