var standings = function() {
	$('#league').ready(function() {
		zebra();
	});
}

function GameNext(gameId) {
    $.ajax({ url: "/api/game/?id="+gameId+"&is_next=1", dataType: "html", context: $('.gn'+gameId), success: function(data){
        $('.gn'+gameId).append(data);
    }});
}

function gameAnnouncement(khlId) {
    $('#khlOnline').click(function() {
		var pw = window.open('http://online.khl.ru/online/'+khlId+'.html','w23','scrollbars=no,menubar=no,location=no,width=900,height=560');
		pw.focus();
		return false;
	});
}

