// This code will wait till the DOM is loaded before loading the analytics API and tracking the page activity
// This ensures that the user experience is not interupted if there are any connectivity issues with Google's API
// The code is dependant on the jquery library being loaded in the head section
$(document).ready(function(){
	
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	var gaTrackingCode = "UA-7687050-1";
	
	$.getScript(gaJsHost + "google-analytics.com/ga.js", function(){
		try {
			var pageTracker = _gat._getTracker(gaTrackingCode);
			pageTracker._trackPageview();
		} 
		catch(err) {}
	});

});