function domRollover(){if(navigator.userAgent.match(/Opera (\S+)/)){var c=parseInt(navigator.userAgent.match(/Opera (\S+)/)[1])}if(!document.getElementById||c<7){return}arrTagNames=new Array("img","input");for(intIndex in arrTagNames){var e=document.getElementsByTagName(arrTagNames[intIndex]);var d=new Array();var a=new Array();var b=new Array();for(i=0;i<e.length;i++){if(e[i].className.indexOf("domroll")!=-1){a[i]=e[i].getAttribute("src");b[i]=e[i].className;d[i]=new Image();if(b[i].match(/domroll (\S+)/)){d[i].src=b[i].match(/domroll (\S+)/)[1]}e[i].setAttribute("xsrc",a[i]);e[i].onmouseover=function(){this.setAttribute("src",this.className.match(/domroll (\S+)/)[1])};e[i].onmouseout=function(){this.setAttribute("src",this.getAttribute("xsrc"))}}}}}$(window).load(domRollover);