// ----------------------------------------------------
// Copyright © 2005-06 ELOQUEX Ltd - All rights reserved
// menu script fot TYPE 200+ : required for IE
// note: set the menu id appropriately
// ----------------------------------------------------
sfHover = function() {
	var sfEls = document.getElementById("eloquex_menu_id_0");
	if(!sfEls) return false;
    sfEls = sfEls.getElementsByTagName("LI");
	
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
