jQuery(function($){
	//Création des liens retours
	$('.retour a').click(function() {
		history.go(-1); return false;
	});
	
	$(document).pngFix(); 
	if($('#banner img').length == 1) {
		$('#banner img').css('display', 'block');
	} else if ($('#banner img').length > 0) {
		showDiapo();
	}
});

photo = 0;
function showDiapo()
{
	var i = 0;
	$('#banner img').each(function(j)
	{
		if (i == photo) $(this).show();
		else $(this).hide();
		i++;
	});
	photo = (photo >= (i - 1)) ? 0 : photo + 1;
	$('#banner a').fadeIn("slow", function(){
		setTimeout('hideDiapo()', 5000);
	});
}
function hideDiapo()
{
	$('#banner a').fadeOut("slow", function(){
		showDiapo();
	});
}
