function initTop()
{
    var shopHome = document.getElementById("home").getElementsByTagName("a");
    var member = document.getElementById("member").getElementsByTagName("a");
    var productSearch = document.getElementById("search").getElementsByTagName("h2");

    shopHome[0].innerHTML = "<img src=\"/shop/himg/shop_logo.gif\" alt=\"" + shopHome[0].innerHTML + "\" />";

    member[0].innerHTML = "<img src=\"/shop/himg/" + member[0].innerHTML + ".gif\" alt=\"" + member[0].innerHTML + "\" />";
    member[1].innerHTML = "<img src=\"/shop/himg/" + member[1].innerHTML + ".gif\" alt=\"" + member[1].innerHTML + "\" />";

    productSearch[0].innerHTML = "<img src=\"/shop/himg/search.gif\" alt=\"" + productSearch[0].innerHTML + "\" />";
}

function initShop()
{
    var shop = document.getElementById("shop");
    var link01 = g4_url + "/shop/list.php?ca_id=10";
    var link02 = g4_url + "/shop/list.php?ca_id=20";
    var link03 = g4_url + "/shop/list.php?ca_id=30";

    //shop.innerHTML = "<img src=\"/shop/himg/shop.gif\" width=\"928\" height=\"484\" border=\"0\" alt=\"\" usemap=\"#shopMap\"><map name=\"shopMap\"><area shape=\"poly\" coords=\"87,345, 326,265, 319,239, 279,219, 277,196, 233,181, 225,73, 145,57, 48,62, 0,103, 3,281\" href=\"" + link01 + "\" onmouseover=\"showLayer('menuIntro1'); changeCursor(1);\" onmouseout=\"hideLayer('menuIntro1'); changeCursor(0);\"><area shape=\"poly\" coords=\"367,67, 339,261, 558,266, 531,71, 447,16\" href=\"" + link02 + "\" onmouseover=\"showLayer('menuIntro2'); changeCursor(1);\" onmouseout=\"hideLayer('menuIntro2'); changeCursor(0);\"><area shape=\"poly\" coords=\"672,294, 768,335, 819,324, 824,273, 806,259, 708,223, 684,243\" href=\"" + link03 + "\" onmouseover=\"showLayer('menuIntro3'); changeCursor(1);\" onmouseout=\"hideLayer('menuIntro3'); changeCursor(0);\"><area shape=\"poly\" alt=\"\" class=\"dummyLink\" coords=\"560,392, 583,428, 635,406, 646,355, 607,345\" href=\"#\" onmouseover=\"showLayer('talk2');\" onmouseout=\"hideLayer('talk2');\"><area shape=\"poly\" alt=\"\" class=\"dummyLink\" coords=\"294,335, 267,364, 270,400, 362,416, 365,405, 316,339\" href=\"#\" onmouseover=\"showLayer('talk1');\" onmouseout=\"hideLayer('talk1');\"></map>";
    shop.innerHTML = '<img src="/shop/himg/shop.gif" width="928" height="484" border="0" alt="" usemap="#shopMap" /><map name="shopMap"><area id="menuIntro_1" shape="poly" coords="87,345, 326,265, 319,239, 279,219, 277,196, 233,181, 225,73, 145,57, 48,62, 0,103, 3,281" href="' + link01 + '" /><area id="menuIntro_2" shape="poly" coords="367,67, 339,261, 558,266, 531,71, 447,16" href="' + link02 + '" /><area id="menuIntro_3" shape="poly" coords="672,294, 768,335, 819,324, 824,273, 806,259, 708,223, 684,243" href="' + link03 + '" /><area id="talk_2" class="dummyLink" shape="poly" alt="" coords="560,392, 583,428, 635,406, 646,355, 607,345" href="#" /><area id="talk_1" class="dummyLink" shape="poly" alt="" coords="294,335, 267,364, 270,400, 362,416, 365,405, 316,339" href="#" /></map>';
}

function showLayer(layerID)
{
    var l = document.getElementById(layerID);

    if(l)
    {
        l.style.display = "block";
    }
}

function hideLayer(layerID)
{
    var l = document.getElementById(layerID);

    if(l)
    {
        l.style.display = "none";
    }
}

function changeCursor(isOver)
{
    if(isOver)
    {
        document.body.className = 'cursorPointer';
    }
    else
    {
        document.body.className = 'cursorDefault';
    }
}

function escrowPopup()
{
    var newwindow=window.open('/escrow_pop.html','name','WIDTH=300,HEIGHT=300,FRAMEBORDER=0,MARGINWIDTH=0,MARGINHEIGHT=0,SCROLLING=no,allowtransparency=true');

    if(window.focus)
    {
        newwindow.focus();
    }

    return false;
}