// JavaScript Document

if (document.images) {
	SrcArr = new Array ("home","company","products","support","contact","order");
	ImgArr = new Array ();
	for (i in SrcArr) {
		ImgArr[i] = new Image ();
		ImgArr[i].src =  "http://www.intergate.dk/content/images/menu/m_"+SrcArr[i] + "_over.gif";
	}
}

function mnu(imgsrc,ImVsbl) {
	
	document.images[imgsrc].src = "http://www.intergate.dk/content/images/menu/m_"+imgsrc+(ImVsbl ? "_over" : "")+".gif";
}
