calendar_option={ show:'all' };
jQuery(".fase_f2:first").html("Finale 3 - 4 Posto");

jQuery(".team_0,.team_1").map(function() {
  return (jQuery(this).attr("rel") + "").length <=3 ? this : null;
}).each(function() {
 jQuery("a",this).attr("href","#");
 
jQuery("table.results tr td img").each(function() {

		   var self=this;
		   var type=(function() {
		    return "neutro.png"
		   })();

		   $(self).each(function() {

		      var img=new Image()
		      var self=this;
		      img.onload=function() {
		         self.src=this.src;
		      }
		      var src=this.src;
		      this.src="lib/images/squadre/loghi/small/"+type;
		      img.src=src;

		   });
		});
})

