$(window).load(function(){
	$('.more-odds span').each(function(){
		var cols_hidded = true;
		$(this).click(function(){
			var wrapper_table = $(this).parents('.pronostic_1x2_table:first');
			if (cols_hidded){
				$(this).addClass('less-icon');
				var click_anchor = 'Limitare la visualizzazione dei bookmakers';
				wrapper_table.find('.fields-more').show();
			} else {
				$(this).removeClass('less-icon');
				var click_anchor = 'Visualizza tutti i bookmakers';
				wrapper_table.find('.fields-more').hide();
			}
			$(this).html(click_anchor);
			cols_hidded = !cols_hidded;
		});
    });
});

