window.onload = function() {
	var strTrackerInfo = getTrackerInfo();
	if(window.XMLHttpRequest)
		var objXMLHttp = new XMLHttpRequest();
	else
		var objXMLHttp = new ActiveXObject("Microsoft.XMLHTTP");
	objXMLHttp.open('GET', '/action/atxTracker.logsession'+ strTrackerInfo, true);
	objXMLHttp.send(null);
	
	intSelected = document.getElementById('hdnTaskGroup').value;
 	initialiseMenu('othermenu', 'home', '2');
	initialiseMenu('usmenu', 'us', '3');
	initialiseMenu('othermenu', 'coffeeshop', '4');
	initialiseMenu('othermenu', 'deli', '5');
	initialiseMenu('othermenu', 'offers', '6');
	initialiseMenu('othermenu', 'tastings', '7');
	
	if(document.getElementById('backcontainer')) {
		objImage = new Image();
		intTimer1 = new Date();
		intTimer1 = intTimer1.getTime();
		objImage.src = strImageSrc +'?unique='+ intTimer1;
		intCheckCount = 0;
		strBackgroundSrc = document.getElementById('hdnBackgroundSrc').value;
		intBackgroundSize = document.getElementById('hdnBackgroundSize').value;
		setTimeout('checkSpeed()', intTimeDelay);
	}
}