(function() {
	$(document).ready(function() {
		prepareOnLoad();
		$('#tabs').tabs("select",2);
		
	
	 $("select.driver_select").bind("change",function() {
	    document.location="scheda_ciclista.shtml?"+$(this).val();	
	 });
	
		    
		$("img.foto:first").each(function() {

		   var self=this;
		   var type=(function() {
		    return "ciclisti/neutro.jpg"
		   })();

		   $(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/"+type;
		      img.src=src;

		   });
		});
		
		
	});
})()
