var refreshLivescores = function()
{
	$('.liveScoreBox').each(function() {
		$(this).load('/ajax/liveScoreBox.jsp?id=' + $(this).attr('id'));
	});
};
var refreshLivescoreCaptions = function()
{
	$('.liveScore').each(function() {
		$(this).load('/ajax/liveScoreCaption.jsp?id=' + $(this).attr('id'));
	});
};
var refreshLivescoreCaptionsNoLink = function()
{
	$('.liveScoreLink').each(function() {
		$(this).load('/ajax/liveScoreCaptionNoLink.jsp?id=' + $(this).attr('id'));
	});
};