$(document).ready(function(){			
	$('#rotate').cycle({ fx: 'scrollHorz', pager: '#number', manualTrump: true, timeout: 8000 });
	
	$(".score:contains('o')").replaceWith('<td class="score">0</td>');
	$(".extraend:contains('o')").replaceWith('<td class="extraend">0</td>');
	$(".standings:contains('o')").replaceWith('<td class="standings">0</td>');
	$(".standings:empty").replaceWith('<td class="standings">0</td>');
	
	
	$.each($(".cal"), function(i, c) {
	    text = $(c).html();
	    $(c).html(text.substring(8));
	});
	
	$('.overlay').hide();
	$('#rules').click(function(){ $('.modal').show(); $('.overlay').show(); });
	$('.overlay, .close').click(function(){ $('.modal').hide(); $('.overlay').hide(); });
	
});
