window.onload= function()
{
    var xhrGetArea = new Xhr();
    xhrGetArea.request(
        "XhrGetArea.php"
        ,null
        ,success = function(res)
        {
            data = eval(res);
            document.getElementById("area_banner").src = "images/"+data.bannerfile;

            var ga = new googleAnalytics();
			var val = data.area;
            ga.trackPageView( val ? "area="+val : null );
        }
    );

    var xhrGetPrefectureLink = new Xhr();
    xhrGetPrefectureLink.request(
        "XhrPrefectureLink.php"
        ,null
        ,success = function(res)
        {
            document.getElementById("prefs").innerHTML = res;
        }
    );

    var xhrShopListSeeker = new Xhr();
    xhrShopListSeeker.request(
        "XhrShopListSeeker.php"
        ,null
        ,success = function(res)
        {
            rec = eval("("+res+")");
            document.getElementById("shops").innerHTML = rec.html;
            if (rec.selected!="")
            {
            	location.hash = rec.selected;
            }
        }
    );
}
