window.onload = function ()
{
    var items = document.getElementsByTagName('img');
    
    for (var i = 0;i < items.length; i++)
    {
        if (items[i].className != 'menu1')
        {
            continue;
        }
        
        items[i].onmouseover = function ()
        { 
            this.src = this.src.replace(/.jpg/, "_h.jpg");
        }
        
        items[i].onmouseout = function ()
        { 
            this.src = this.src.replace(/_h.jpg/, ".jpg");
        }        
    }
}


