window.onload=function(){
var tags=document.getElementsByTagName("img");
for(var i=0;i<tags.length;i++){
var cn=tags[i].className;
if(cn!=""){
var img=document.getElementById(cn);
if(img){
tags[i].img=img;
hideimg=tags[i].nextSibling;
while(hideimg){
if(hideimg.className=="hide") break;
hideimg=hideimg.nextSibling;
}
tags[i].hideimg=hideimg;
tags[i].onmouseover=function(){
this.img.src=this.hideimg.src;
this.img.parentNode.href=this.parentNode.href;
};
}
}
}
}