<!--

// Create image objects, preload all active and inactive images.
    orde_on = new Image();
    orde_on.src = "images/order.gif";
    deta_on = new Image();
    deta_on.src = "images/detail.gif";
    colo_on = new Image();
    colo_on.src = "images/color.gif";
    comp_on = new Image();
    comp_on.src = "images/company.gif";
    whol_on = new Image();
    whol_on.src = "images/wholesale.gif";
    home_on = new Image();
    home_on.src = "images/home.gif";

    orde_off = new Image();
    orde_off.src = "images/order-r.gif";
    deta_off = new Image();
    deta_off.src = "images/detail-r.gif";
    colo_off = new Image();
    colo_off.src = "images/color-r.gif";
    comp_off = new Image();
    comp_off.src = "images/company-r.gif";
    whol_off = new Image();
    whol_off.src = "images/wholesale-r.gif";
    home_off = new Image();
    home_off.src = "images/home-r.gif";

function imgAct(imgName) {
    document[imgName].src = eval(imgName + "_off.src");
}

function imgInact(imgName) {
    document[imgName].src = eval(imgName + "_on.src");
}
//-->

