/* このファイルはUTF-8のBOMなし(UTF-8N)で保存しています */

// 出力
outputGoogleAnalytics();

/**
 * GoogleAnalyticsトラッキングコードの出力
 */
function outputGoogleAnalytics() {
    document.write('<script type="text/javascript">');
    document.write('var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");');
    document.write('document.write(unescape("%3Cscript src=\'" + gaJsHost + "google-analytics.com/ga.js\' type=\'text/javascript\'%3E%3C/script%3E"));');
    document.write('</script>');
    document.write('<script type="text/javascript">');
    document.write('try {');
    document.write('var pageTracker = _gat._getTracker("UA-8799725-1");');
    document.write('pageTracker._trackPageview();');
    document.write('} catch(err) {}</script>');
}