// ----------------------------------------------------------------------------
// script.js
// Copyright (C) 2005-2009 Taku Watabe
// Time-stamp: <2009-05-24T08:30:34+09:00>
// ----------------------------------------------------------------------------
(function(window, document) {
    // Google Analytics
    var heads = document.getElementsByTagName("head");
    if (0 < heads.length) {
        // スクリプトコード ロード
        var host = ("https:" == document.location.protocol) ? "https://ssl."
                                                            : "http://www.";
        var script = document.createElement("script");
        script.setAttribute("type", "text/javascript");
        script.setAttribute("src", host+"google-analytics.com/ga.js");
        heads[0].appendChild(script);
        // Google Analytics 情報送信
        window.onload = function() {
            if ("_gat" in window) {
                _gat._getTracker("UA-2877926-2")._trackPageview();
            }
        };
    }
})(window, document);
