	// When the script loads, this entire script will run and report the pageview
var pageTracker = _gat._getTracker('UA-9362968-1'); 

	// If there is no chance of www.classicbindery.com ever having a sub-domain other than www then _setDomainName can be removed:
	// I've noticed that classicbindery.com/index.html does not redirect to www. ... so the following is mandatory - without it GA will maintain 2 sets of cookies and treat each as representing a different visitor
pageTracker._setDomainName('.classicbindery.com'); 

sendGA();

function sendGA() {
	if (document.gatcPageName) 
		pageTracker._trackPageview(document.gatcPageName);
	else
		pageTracker._trackPageview();
}