function activateLeagueInlay(objId)
{
    var leagueArrowLeft = objId == 'premer-liga' ? 23 : objId == 'persha-liga' ? 120 : 165;
    $('#tournament-container').children().css('display','none');
    $('#'+objId).css('display','table');
    $('#league-arrow').css('margin-left', leagueArrowLeft+'px');
}