//ZoomImage.js

function initZoomImages()
{
    for(var i=0;i<document.images.length;i++)
    {
        var img = document.images[i];
        var name = img.id;
        if ( name.substr(0,3) != "Zoomable" )
        {
            continue;
        }
     
        document.images[i].onmouseover=expandThumbnail;
        document.images[i].onmouseout=reduceThumbnail;

   }
}

function clickThumbnail() {
    if ( this.getAttribute("width") == "60" )
    {
        expandThumbnail();
    }
    else
    {
       reduceThumbnail();
    }
}
function expandThumbnail() {
        this.setAttribute("width", "300");
}
function reduceThumbnail() {
        this.setAttribute("width", "60");
}


function newImageWindow() {
     var imgName = "2008/Photos/" + this.id + ".jpg";
     
     var imgWindow = window.open(imgName, "imgWin", "width=600,height=400, scrollbars=no");
     }