function scoreboard(gameid) {
	window.open("http://www.macslive.com/sarachek/game.php?gameid="+gameid,"Scoreboard","toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=840,height=685");

}

function viewTier(tier){
	for(i=1; i<6; i++){
		document.getElementById('tier'+i).style.display = "none";
		document.getElementById('tier'+i+'button').style.backgroundColor = '';
	}
	document.getElementById('tier'+tier).style.display = "block";
	document.getElementById('tier'+tier+'button').style.backgroundColor = "#B5D0FD";
}


 function refreshScorebar(){
                    jQuery.ajax({
                        url:        'scorebarRefresh.php',
                        async:      true,
                        cache:      false,
                        dataType:   'html',
                        type:       'GET',
                        success:    function(data, textStatus, jqXHR){
                                        jQuery('#scorebarContainer').html(data);

                                        jQuery('#scorebarContainer .active').effect('highlight', {}, 750);
                                    },
                        error:      function(jqXHR, testStatus, errorThrown){}
                    });
                }

                jQuery(document).ready(function(){
                    setInterval(refreshScorebar, 15000);
                });
