function gametimelive_launch() {
	ls_file_name = '/games/game_component/dynamic/simple_scoreboard.xml';
	
	$.get(ls_file_name,{},function(xml){
		
		//Loop the XML to find the Celtics game.
		$('game[gcd*="BOS"]',xml).each(function(i) {
		gameCode = $(this).attr("gcd");
		gameCodeArray = gameCode.split('/');
		gameCodeDate = String(gameCodeArray[0]); /* This mage have to change to Number */
		gameCodeTeams = String(gameCodeArray[1]);		
		gameCodeAwayTeam = gameCodeTeams.substr(0,3);
		gameCodeHomeTeam = gameCodeTeams.substr(3,3);
		gameStatusNumber = $(this).attr("gstat");
		gameLocationString = "";
		
		// Check gamecode to see if Celtics appear on NBA scoreboard. 1) Pregame 2)In-Game 3)Postgame.
				if (gameStatusNumber == 2) {
				
				$("#gametimelive").css("display","block");
					autoupdate_scoreboard();
					setInterval("autoupdate_scoreboard()", 15 * 1000); //Refresh scoreboard every 15 seconds.
					$('<iframe src="http://www.coveritlive.com/index2.php?option=com_altcaster&task=viewaltcast&template=celtics&width=470&height=550" width="470px" height="550px" frameborder="0" scrolling="no" allowTransparency="true" ><a href="http://www.coveritlive.com/mobile.php?option=com_mobile&task=viewaltcast&template=celtics"></a></iframe>').insertAfter("#live_blog_h1");
					
					getTwitters('twitters', { 
					  id: 'celtics', 
					  clearContents: true, 
					  count: 1, 
					  withFriends: true,
					  ignoreReplies: false,
					  template: '%text%<br /><a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
					});	
				
				}
				else if (gameStatusNumber == 3)
				{
					$("#gametimelive").css("display","block");
					autoupdate_scoreboard();
					$('<iframe src="http://www.coveritlive.com/index2.php?option=com_altcaster&task=viewaltcast&template=celtics&width=470&height=550" width="470px" height="550px" frameborder="0" scrolling="no" allowTransparency="true" ><a href="http://www.coveritlive.com/mobile.php?option=com_mobile&task=viewaltcast&template=celtics"></a></iframe>').insertAfter("#live_blog_h1");
					
					getTwitters('twitters', { 
					  id: 'celtics', 
					  clearContents: true, 
					  count: 1, 
					  withFriends: true,
					  ignoreReplies: false,
					  template: '%text%<br /><a href="http://twitter.com/%user_screen_name%/statuses/%id%/">%time%</a>'
					});
				}
				
				else { $("#gametimelive").hide(); }
			
		});
	});
}