$(document).ready(function() {
	$("#equipe ul").fadeIn(2000);
	$.listen("mouseover","a.equipe",function() {
		var current = $(this).attr("id");
		$("a.equipe").stop();
		$("a.equipe").each(function() {
			if(current!= $(this).attr("id")) {
				$(this).fadeTo("slow",0.2);
			} else {
				$(this).stop().fadeTo("slow",1);
			}
		});
	});
	$.listen("mouseout","a.equipe",function() {
		$("a.equipe").stop().fadeTo("slow",1);
	});
	$("a.equipe").tooltip({
	    track: true,
	    delay: 0,
	    showURL: false,
	    showBody: "::"
	});
	$('#aafp_diapo').animatedinnerfade({
		speed: 2000,
		timeout: 5000,
		type: 'sequence',
		containerwidth: '419px',
		containerheight: '297px',
		animationSpeed: 5000,
		animationtype: 'fade',
		controlBox: 'none',
		displayTitle: 'none'
	});
});
