// JavaScript Document
$(document).ready(function() {
	//$('.tabs').tabs( 'add' , './news-feed.html' , 'News' );
	var teamId = $('#team-box').attr('team');
	var blogId = $('#team-box').attr('blogId');
	
	
	$.get('/currentfamilies/athletics/teamadmin/index.cfm',
			  {
				event: 'feed.alllevelsschedule',
				team: teamId,
				teamBlog: blogId
			  }, function(data) {
					$('#team-box').replaceWith(data);
					$('#accordion').accordion({autoHeight: false});
					$('#sb').dialog({
						autoOpen:false,
						position:'top',
						width:900,
						height:700,
						modal:true,
						title:'Varsity Scoreboard',
						buttons: { Close: function() {$(this).dialog('close');}}
					});
					$('#sb tbody tr:odd').addClass('odd-row');
					$('#scoreboard-link').click(function(){$('#sb').dialog('open');});
			  });
});
