// slideshow accueil

function init() {
	$("#slideshow-accueil img").hide();
	$("#slideshow-accueil img:first").fadeIn();
}

function slideshow() {
	var $top = $("#slideshow-accueil img:visible");
	var $next;
	if ($top.next("img").length > 0) {
		$next = $top.next();
	} else {
		$next = $("#slideshow-accueil img:first");
	}
	$top.fadeOut();
	$next.fadeIn();
}

init();
setInterval(slideshow,4000);
