<!-- hide this script from non-javascript-enabled browsers

if (document.images) {
home_F1 = new Image(106,35); home_F1.src = "home.gif";
home_F2 = new Image(106,35); home_F2.src = "home_F2.gif";
about_F1 = new Image(105,35); about_F1.src = "about.gif";
about_F2 = new Image(105,35); about_F2.src = "about_F2.gif";
contact_F1 = new Image(113,35); contact_F1.src = "contact.gif";
contact_F2 = new Image(113,35); contact_F2.src = "contact_F2.gif";
search_F1 = new Image(112,35); search_F1.src = "search.gif";
search_F2 = new Image(112,35); search_F2.src = "search_F2.gif";
}

/* Function that swaps images. */

function di20(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 -->
