var pageIsLoad = false;
$(document).ready(function(){
    if($(".newodds").length){
        $(".newodds").find(".block").each(function(){
            $(this).find(".Game").each(
                function(){
                    var ind = $(this).index();
                    if(ind == 0 || ind == 1 || ind == 2){
                        //$(this).addClass("top");
                    }
                    if((ind+1)%3==0){
                        //$(this).addClass("right");
                    }

                });
        });
    }
    pageIsLoad = true;
});
