/*
 This function queues events to be executed onLoad.
 It's not currently needed
 initMenus() moved to menuBox.html so that the menu
 negotiation isn't seen by the user. (first on, then off)
*/

function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	}else{
		window.onload = function() {
			if (oldonload) oldonload();
			func();
		}
	}
}

addLoadEvent(googleTrack)
function googleTrack()
{	_uacct = "UA-474355-3";
	urchinTracker();
}
