
var googleAnalyticsAccountId =  googleAnalyticsAccountId || 'UA-16478122-1';
var msThemeId = msThemeId || '';
var googleAnalyticsTagArray = googleAnalyticsTagArray || [];
var includeMsThemeId = includeMsThemeId || false;

var _gaq = _gaq || [];
_gaq.push(['_setAccount', googleAnalyticsAccountId]);

//  Send the Dealer theme ID to Google Analytics as custom variable.
if (includeMsThemeId)
	_gaq.push(['_setCustomVar', 1, 'Theme-ID', msThemeId, 2]);

_gaq.push(['_trackPageview']);

// Include ecommerce data if it exists
if (googleAnalyticsTagArray) {
	for (var i = 0; i < googleAnalyticsTagArray.length; i++) {
		_gaq.push(googleAnalyticsTagArray[i]);
	}
}

function submitGoogleAnalyticsTracking() {
	(function() {
    	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
		ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
		var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
	})();
}

