<!-- hide this script from non-javascript-enabled browsers

if (document.images) {
l_profile = new Image(); l_profile.src = "img/l_profile.gif";
lo_profile  = new Image(); lo_profile.src = "img/lo_profile.gif";
l_services = new Image(); l_services.src = "/img/l_services.gif";
lo_services  = new Image(); lo_services.src = "/img/lo_services.gif";
l_work = new Image(); l_work .src = "/img/l_work.gif";
lo_work = new Image(); lo_work.src = "/img/lo_work.gif";
l_contact = new Image(); l_contact.src = "/img/l_contact.gif";
lo_contact = new Image(); lo_contact.src = "/img/lo_contact.gif";
l_whatshot = new Image(); l_whatshot.src = "/img/l_whatshot.gif";
lo_whatshot  = new Image(); lo_whatshot.src = "/img/lo_whatshot.gif";
l_contact2 = new Image(); l_contact2.src = "/img/l_contact2.gif";
lo_contact2 = new Image(); lo_contact2.src = "/img/lo_contact2.gif";
}

/* Function that swaps images. */

function change(id, newSrc) {
    var theImage = FWFindImage(document, id, 0);
    if (theImage) {
        theImage.src = newSrc;
    }
}

/* Functions that track and set toggle group button states. */

function FWFindImage(doc, name, j) {
    var theImage = false;
    if (doc.images) {
        theImage = doc.images[name];
    }
    if (theImage) {
        return theImage;
    }
    if (doc.layers) {
        for (j = 0; j < doc.layers.length; j++) {
            theImage = FWFindImage(doc.layers[j].document, name, 0);
            if (theImage) {
                return (theImage);
            }
        }
    }
    return (false);
}

// stop hiding -->
