<!--
    ieHover = function() {
    
      var item1 = document.getElementById("room_nav").getElementsByTagName("LI");
	  for (var i=0; i<item1.length; i++) {
	    item1[i].onmouseover=function() {
		  this.className+=" iehover";
		}
		item1[i].onmouseout=function() {
		  this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	  }

	  var item2 = document.getElementById("site_container").getElementsByTagName("INPUT");
	  for (var i=0; i<item2.length; i++) {
	    item2[i].onmouseover=function() {
		  this.className+=" iehover";
		}
		item2[i].onmouseout=function() {
		  this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	  }
	  
	}
	if (window.attachEvent) window.attachEvent("onload", ieHover);
//-->