function init() {
    // quit if this function has already been called
//    if (arguments.callee.done) return;

    // flag this function so we don't do the same thing twice
//    arguments.callee.done = true;

    // kill the timer
//    if (_timer) clearInterval(_timer);

	//var mapController 	= new MapController($('map'));	
	//var tableController 	= new PositionTablesController();
	//new Control.Tabs($('raceTableTabs'));
	//buildMap(mapController);
};

/* for other browsers */
window.onload = init;