function overM1(id) {
	document.getElementById("m1left"+id).style.background = "url(images/left.gif) no-repeat left -34px";
	document.getElementById("m1right"+id).style.background = "url(images/right.gif) no-repeat right -34px";
	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/eft.gif) no-repeat left 0px";
	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 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";
}

