window.onload = function() { rolloverMenu(); var tags = document.getElementById("nav").getElementsByTagName("img"); for (var i = 0; i < tags.length; i++) { var tag = tags[i]; if (tag.className != "on") { tag.onmouseover = function() { thisId = this.id; document.getElementById(thisId).src = "img/it/menu_" + thisId + "_on.gif"; } tag.onmouseout = function() { thisId = this.id; document.getElementById(thisId).src = "img/it/menu_" + thisId + ".gif"; } } } }