function smartRollover() {   
    if(document.getElementsByTagName) {   
        var images = document.getElementsByTagName("img");  
        for(var i=0; i < images.length; i++) {   
          /*  if(images[i].getAttribute("src").match("_n."))   
            {   
                images[i].onmouseover = function() {   
                    this.setAttribute("src", this.getAttribute("src").replace("_n.", "_r."));   
                }   
                images[i].onmouseout = function() {   
                    this.setAttribute("src", this.getAttribute("src").replace("_r.", "_n."));   
                }   
            }   
			
	        else if(images[i].getAttribute("src").match("_s."))   
            {   
                images[i].onmouseover = function() {   
                    this.setAttribute("src", this.getAttribute("src").replace("_s.", "_r."));   
                }   
                images[i].onmouseout = function() {   
                    this.setAttribute("src", this.getAttribute("src").replace("_r.", "_s."));   
                }   
            } */  
			
        }   
    }   
}   
if(window.addEventListener) {   
    window.addEventListener("load", smartRollover, false);   
}   
else if(window.attachEvent) {   
    window.attachEvent("onload", smartRollover);   
}  



window.onload=function(){
a=document.getElementsByTagName("a");
for(i=0;i<a.length;i++){
a[i].onfocus=function(){this.blur();}
}
area=document.getElementsByTagName("area");
for(i=0;i<area.length;i++){
area[i].onfocus=function(){this.blur();}
}
}
// JavaScript Document