////////////////////////////////////////////////////
//
// ANALYTICS_FOOTER.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-11912155-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);

// Add Google Analytics to the DOM	
(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);
})();



// Call Google Analytics
function callAnalytics(trackPage)
{
	typeof trackPage == "string" ? _gaq.push(['_trackPageview', trackPage]) : _gaq.push(['_trackPageview']);
}
