<!-- Hide script from old browsers
window.onload = function()
{
    var imgs = document.getElementsByTagName("img");
    for(var i = 0, l = imgs.length; i < l; i++)
    {
        var sw = imgs[i].getAttribute("switch-src");
        if(sw)
        {
            (new Image()).src = sw;
            imgs[i].onmouseover = imgs[i].onmouseout = function()
            {
                var temp = this.src;
                this.src = this.getAttribute("switch-src");
                this.setAttribute("switch-src", temp);
            }
        }
    }
}
//-->


