if (!sbweb.event) sbweb.event = function(){

	return {
		// the body's onLoad event
		bodyLoad : function() {
			
			// begin load event
			sbweb.util.log.debug("Load Event Begin");

			// reset experience survey cookie
			setTimeout(loadTracker,50);
				
			// load the parameter map
			if (!sbweb.data.isDataLoaded) {
				sbweb.data.loadBaseParameters();
			}
			
			// bind header elements
			sbweb.ui.bindHeaderElements("body");
		
			// Position the devinfo box
			sbweb.component.serverInfo.positionDevinfoContainer();
		
			// end load event
			sbweb.util.log.debug("Load Event End");
		},
		
		// the body's onUnload event
		bodyUnload : function() {
			
			// reset experience survey cookie
			unLoadTracker();
			
		}
	};
	
}();