// JavaScript Document
<!--
if (document.images) {
	SrcArr = new Array ("home","company","products","contacts","services");
	ImgArr = new Array ();
	for (i in SrcArr) {
		ImgArr[i] = new Image ();
		ImgArr[i].src =  "img/m_"+SrcArr[i] + "_over.gif";
	}
}

function mnu(src,imgsrc,ImVsbl) {
	document.getElementById(imgsrc).style.backgroundImage = "url("+src+"img/m_"+imgsrc+(ImVsbl ? "_over" : "")+".gif);";
}
-->