////////////////////////////////////////////////////
//
// ANALYTICS.JS
//
// This page defines javascript for the google
// analytics call. 
// 
//
// Created 12/05/2009 by Chris Jones
//
////////////////////////////////////////////////////

// Initialise the Google Analytics global object
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-15594388-1']);
_gaq.push(['_setDomainName', '.rustdesign.co.uk']);

// Add Google Analytics to the DOM	
(function()
{
	if(typeof(_gat)=="undefined")
	{
		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);
	}
})();



// Call Google Analytics
function callAnalytics(trackPage)
{
	typeof trackPage == "string" ? _gaq.push(['_trackPageview', trackPage]) : _gaq.push(['_trackPageview']);
}
