// JavaScript Document
<!--
if (document.images) {
	SrcArr = new Array ("enter","register","about","reklama","contacts","exit","mp");
	ImgArr = new Array ();
	for (i in SrcArr) {
		ImgArr[i] = new Image ();
		ImgArr[i].src =  "/images/m-"+SrcArr[i] + "-over.gif";
	}
}

function mnu(imgsrc,ImVsbl) {
	
	document.images[imgsrc].src = "/images/m-"+imgsrc+(ImVsbl ? "-over" : "")+".gif";
}
-->