function loopSound(soundID) {
	window.setTimeout(function() {
		soundManager.play(soundID,{onfinish:function(){loopSound(soundID);}});
		},1);
}

$(document).ready(function(){
	//preload images
	$.preloadCssImages();
	
	//Remove outline from links
	$("div#nav a").click(function(){
		$(this).blur();
	});
	
	$('div#topbanner').css('background', 'url(/img/header_slide.png) no-repeat top center');
	
	//animate banner
	$("div#topbanner").delay(4000).animate(
		{height: "282px", marginTop: "25px" }, "slow"
	)
	.animate(
		{height: "282px", marginTop: "0px" }
	, "fast");
	
	//setup sound buttons
	$("#playSoundButton").hide();
	
	$("#stopSoundButton").click(function(){
		soundManager.stop('sportsChantSound');
		$("#stopSoundButton").hide();
		$("#playSoundButton").show();
	});
	
	$("#playSoundButton").click(function(){
		soundManager.play('sportsChantSound');
		$("#stopSoundButton").show();
		$("#playSoundButton").hide();
	});
	
	$("#closeSign").click(function(){
		soundManager.stop('sportsChantSound');
		$("div#topbanner").animate(
			{height: "282px", marginTop: "-30px" }, "slow"
		)
		.animate(
			{height: "0px" }
		, "fast");
	});
});