function smartRollover(){if(document.getElementsByTagName){var a=document.getElementsByTagName("img");for(var b=0;b<a.length;b++){if(a[b].getAttribute("src").match("_off.")){a[b].onmouseover=function(){this.setAttribute("src",this.getAttribute("src").replace("_off.","_on."))};a[b].onmouseout=function(){this.setAttribute("src",this.getAttribute("src").replace("_on.","_off."))}}}}}if(window.addEventListener){window.addEventListener("load",smartRollover,false)}else{if(window.attachEvent){window.attachEvent("onload",smartRollover)}};