<!--
function showmenu(id) {
	var d = document.getElementById(id);
	for (var i=1; i<40; i++) {
		var j = document.getElementById('smenu'+i);
		if (j) { document.getElementById('smenu'+i).style.display="none"; }
	}
	if (d) { d.style.display="block"; }
}

sfHover = function() {
    if (!document.body.currentStyle) return;
    var sfEls = document.getElementById("menu").getElementsByTagName("li");
    for (var i = 0; i < sfEls.length; i++)
    {
        sfEls[i].onmouseover = function()
        {
            if (this.lastChild.style)
            {
                //this.lastChild.style.visibility = 'visible';
                this.lastChild.style.display = 'block';
            }
            //this.style.backgroundColor = '#f9f9f9';
        }
        sfEls[i].onmouseout = function()
        {
            if (this.lastChild.style)
            {
                //this.lastChild.style.visibility = 'hidden';
                this.lastChild.style.display = 'block';
            }
            this.style.backgroundColor = '';
        }
    }
}
window.onload = sfHover;
//-->
