function moveNext()
{
	//	var tot = $("#nav_exposition li").length;
	var el = $("#nav_exposition a.selected").parent().next().find("a");
	if (el.length) {
		el.click();
	} else {
		$("#nav_exposition a:first").click();
	}
	
}

$(function() {
	$("#nav_exposition a:first").addClass("selected");
	$("#exposition > div:not(:first)").hide();
	$("#nav_exposition a").click(function(el) {
		var id = $(this).attr("id").split("-")[1];
		
		$("#exposition > div:visible").hide();
		$("#une-" + id).fadeIn("slow");
		
		
		$(this).parent().parent().find("a").removeClass("selected");
		$(this).addClass("selected");
		
		clearTimeout(timer);
		timer  = setTimeout("moveNext()", 10000);
		
		return false;
	});
	
	
	var timer = setTimeout("moveNext()", 10000);
	
});
