
var     selected = 0;
var     ids = new Array("children", "family", "wedding", "reprint", "products");

function loaded()
{
    select(0);
}

function select(idx)
{
    mnu = document.getElementById("menu");
    itms = mnu.getElementsByTagName("td");
    itms.item(selected).style.fontSize = "12pt";
    itms.item(selected).style.fontWeight = "normal";
    itms.item(selected).style.color = "#ecbda4";
    prc = document.getElementById(ids[selected]);
    prc.style.visibility = "hidden";
    divs = prc.getElementsByTagName("div");
    for (ii = 0; ii < divs.length; ii++)
    {
        divs.item(ii).style.visibility = "hidden";
    }

    selected = idx;
    itms.item(selected).style.fontSize = "14pt";
    itms.item(selected).style.fontWeight = "normal";
    itms.item(selected).style.color = "#a3c380";
    prc = document.getElementById(ids[selected]);
    prc.style.visibility = "visible";
    divs = prc.getElementsByTagName("div");
    for (ii = 0; ii < divs.length; ii++)
    {
        divs.item(ii).style.visibility = "visible";
    }
}


function showProduct(product, ww, hh)
{
    ie=(document.getElementById && document.all);
    wnd = window.open("product_view.php?image=" + product, "ProductView",
                      "width=" + (ww + 50) + ",height=" + (hh + 50) + ",status=no,menubar=no,location=no,toolbar=no");
    wnd.resizeTo(ww + 50, hh + (ie ? 150 : 80));
    wnd.focus();
}

