<!-- // hover menu code
sfHoverMenu = function() {
	var sfEls2 = document.getElementById("menu_tendina").getElementsByTagName("LI");
	for (var sf2=0; sf2<sfEls2.length; sf2++) {
		sfEls2[sf2].onmouseover=function() {
			this.className+=" sfmenuhover";
		}
		sfEls2[sf2].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfmenuhover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", sfHoverMenu);
// -->