$(document).ready(function(){						
		$("#equipe_distinctions a[href^='equipe.php?']").bind("click", function(e){	 
		var theURL =  $(this).attr("href");
		if (theURL!=undefined) {
			theURL = theURL.substring(theURL.indexOf("path")+15);
			e.preventDefault();
			
			if (theURL=='1' || theURL=='2' || theURL=='3' || theURL=='4') {
				$("#equipe_text").html("<img src='images/loader.gif' width='35' height='35'>");
				$("#equipe_text").load("distinction"+theURL+".php", null, function(){
   					bindRetour();
 				});

			}
			$(this).blur();			
		}

		
	});
});
function bindRetour() {
		$("#equipe_text a[href*='equipe']").bind("click", function(e){	
			   e.preventDefault();
			   $("#equipe_text").html("<img src='images/loader.gif'>");
				$("#equipe_text").load("distinction0.php");
		});
}
