
$(document).ready(function() {
	
	//$('.info').hide();
	$('#infoContainer').slideUp();
	showHideScheduleInit();
	reloadScores();
} );

function showHideScheduleInit()	{
	$('#tabSchedule').click(function(){showHideSchedule(); return false});
}  

function showHideSchedule()	{
	if ($('#tabSchedule').html() == "View Schedule &gt; &gt;")	{
		$('#infoContainer').slideDown('slow');
		$('#scheduleDiv').fadeIn('slow');
		//$('#tabRecipes').html("Tailgate Recipes &gt; &gt;");
		//$('#tabTailgateTips').html("Tailgate Tips &gt; &gt;");
		$('#tabSchedule').html("&lt; &lt; Close Schedule");
	}else{
		$('#infoContainer').slideUp();
		$('#tabSchedule').html("View Schedule &gt; &gt;");
	}
}

function reloadScores()	{
	setInterval(function(){$('#scoreboard').load('/scoreboard/get_live_scores');}, 60000);

}  

