/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

// 出力
outputGoogleAnalytics();

/**
 * GoogleAnalyticsトラッキングコードの出力
 */
function outputGoogleAnalytics() {
    document.write('<script type="text/javascript">');
    document.write("  var _gaq = _gaq || [];");
    document.write("  _gaq.push(['_setAccount', 'UA-8799725-1']);");
    document.write("  _gaq.push(['_trackPageview']);");
    document.write("  (function() {");
    document.write("    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;");
    document.write("    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';");
    document.write("    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);");
    document.write("  })();");
    document.write("</script>");
}

