<!-- hide this script from non-javascript-enabled browsers

if (document.images) {
home_F1 = new Image(214,9); home_F1.src = "../Library/home.gif";
home_F2 = new Image(214,9); home_F2.src = "../Library/home_F2.gif";
portfolio_F1 = new Image(214,10); portfolio_F1.src = "../Library/portfolio.gif";
portfolio_F2 = new Image(214,10); portfolio_F2.src = "../Library/portfolio_F2.gif";
commissions_F1 = new Image(214,9); commissions_F1.src = "../Library/commissions.gif";
commissions_F2 = new Image(214,9); commissions_F2.src = "../Library/commissions_F2.gif";
about_andrew_F1 = new Image(214,9); about_andrew_F1.src = "../Library/about_andrew.gif";
about_andrew_F2 = new Image(214,9); about_andrew_F2.src = "../Library/about_andrew_F2.gif";
enquiries_F1 = new Image(214,9); enquiries_F1.src = "../Library/enquiries.gif";
enquiries_F2 = new Image(214,9); enquiries_F2.src = "../Library/enquiries_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 -->
