// *************************************************************
// Javascript Page Initialization
// ------------------------
// NOTE: Must be the last file in the script library include chain
// *************************************************************

var _siteroot = "/";

// *************************************************************
// Window/Document Events
// *************************************************************
// cache other onload events if they exist
var superOL = window.onload;
			
var windowEvents = {}; 
JSBroadcaster.initialize(windowEvents);

var windowListener = {};
windowEvents.addListener(windowListener);



// *************************************************************
// Onload Calls
// *************************************************************
windowListener.onLoad = function () {
	
	//MM_preloadImages();
	
	// call cached onloads first
	if(superOL != null) { superOL(); } 
	
	//First focus fields
	//var ff; if(ff = getDOMElementByID()){ff.focus();}
	
	var ck;
	if(ck = Cookie.get("curTeam")){
		swapPageImages(ck);
	}else{
		Cookie.set("curTeam", "ut"); 
	}
	
	//cleanup
	windowEvents.removeListener(windowListener); 
	
}

window.onload = function(){ windowEvents.broadcastMessage("onLoad"); }
