
$(document).ready(function(){
	
	// Display the Score Ticker
	var ID_StockTicker = $('#scoreTickerId').html();
	var StockTickerHost = $('#scoreTickerHost').html();
	var so = new SWFObject("/flash/scoreTicker.swf", "ticker", "204", "88", "8", "#ffffff");
	so.addVariable("id", ID_StockTicker);
	so.addVariable("host", StockTickerHost);
	so.write("scoreTicker");
	
	$('#scoreTicker').append('<hr />');
	
	// Display the Carousel
	var so = new SWFObject("/flash/carousel.swf", "carousel", "382", "242", "8", "#ffffff");
	so.addParam("allowFullScreen", true);
	so.addParam("wmode", 'transparent');
	so.addVariable("host", $('#httpHost').html());
	so.write("carousel");
	
	// Display the Athlete of the month
	var so = new SWFObject("/flash/athleteOfTheMonth.swf", "athleteOfTheMonth", "220", "250", "8", "#ffffff");
	so.write("athleteOfTheMonth");
});