/*
** Navigation images and handling, for rollovers, etc.
*/

if (document.images) 
{
    home_on = new Image(87,31);
    home_on.src = "images/home_on.gif";
    home_off = new Image(87,31);
    home_off.src = "images/home_off.gif";

    products_on = new Image(120,31);
    products_on.src = "images/products_on.gif";
    products_off = new Image(120,31);
    products_off.src = "images/products_off.gif";

    account_on = new Image(151,31);
    account_on.src = "images/account_on.gif";
    account_off = new Image(151,31);
    account_off.src = "images/account_off.gif";

    cart_on = new Image(92,31);
    cart_on.src = "images/cart_on.gif";
    cart_off = new Image(92,31);
    cart_off.src = "images/cart_off.gif";
}

function nav_rollover(imgDocID,imgObjName) 
{
    if (document.images) 
    {
        document.images[imgDocID].src = eval(imgObjName + ".src");
    }
}
