jsHover = function() {
  var pid = document.getElementById("menu");
  if (pid){
	  var hEls = pid.getElementsByTagName("div");
	  for (var i=0, len=hEls.length; i<len; i++) {
		if (hEls[i].className == 'item_off')
			{
			hEls[i].onmouseover=function() { this.className+=" jsHover"; }
			hEls[i].onmouseout=function() { this.className=this.className.replace(" jsHover", ""); }
			}
	  }
  } 
}

if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);

function loadimage(obj, path)
   {
   obj.src = path;
   }
