// Comune di Torbole Casaglia JavaScript

// Internet Explorer 6 fix for CSS drop-down menu
function fixTopMenu () {
	if ($("topmenu"))	{
		var dropDownLists = document.getElementsByClassName ("dropdown", $("topmenu"));
	
		for (var i = 0; i < dropDownLists.length; i++) {
			dropDownLists[i].onmouseover = function (e) {
			  this.getElementsByTagName("ol")[0].parentNode.className += " ie6fixover";
				this.getElementsByTagName("ol")[0].style.display = "block";
			}
				
			dropDownLists[i].onmouseout = function (e) {
			  this.getElementsByTagName("ol")[0].parentNode.className = this.getElementsByTagName("ol")[0].parentNode.className.replace('ie6fixover', 'ie6fixout');
				this.getElementsByTagName("ol")[0].style.display = "none";
			}
		}
	}
}

// Init fix onLoad
if (document.all) {
	Event.observe (window, "load", fixTopMenu, false);
}
