/**************************************************
 *
 *	Google Analyticsのタグを挿入する
 *
 * id : GoogleAnalyticsのID		ex) UA-749000-1
 *
**************************************************/
function setGoogleAnalytics( id )
{
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); 
	var jsA = document.createElement( 'script' );
	jsA.src = gaJsHost + "google-analytics.com/ga.js";
	jsA.type = "text/javascript";
	document.body.appendChild( jsA );
	
	startGoogleAnalytics( id );
}

function startGoogleAnalytics( id )
{
	try
	{
		var pageTracker = _gat._getTracker( id );
	//	pageTracker._initData();
		pageTracker._trackPageview();
	}
	catch( e )
	{
		setTimeout( function(){ startGoogleAnalytics( id ); }, 100 );
	}
}

window.onload = function()
{
	setGoogleAnalytics( 'UA-749000-1' );
}


