/***********
3. Initialize Scoreboard Instance and Make the AJAX Call
************/
var scoreboardInit = false;
var config_file	= "/.element/games/json/main_config.json";
var tabId 		= "cnnGameSportsTabs";
var contentId 	= "cnnGameScoresContent";
var hpsb = new Scoreboard(tabId,contentId,config_file);	/* initialize new Scoreboard object*/
var mainConfig = new ajaxer(hpsb._configURL);									/* initialize new ajaxer object*/
mainConfig.update();														/* send the ajax request*/
mainConfig.callback = function(responseText,s){								/* callback functions sets the object's _configJSON*/
	if(s==200){
		scoreboardInit = true;
		hpsb._configJSON = eval('('+responseText+')');
		setTimeout("hpsb.retrieveGames()",1000);									/* this sets everything in motion*/
	}
};

/***********
3. Initialize Scoreboard Instance and Make the AJAX Call
************/
	