var visible = 0;
function init() {
	$('#entete div img').css('display','none');
	$('#entete div img').eq(visible).fadeIn(1500);	
	galery();
}

function galery() {
	self.setTimeout("nextimage()",5000);
	
}

function resizeDivId(id){
	var tmp = 0;
	var height = 0;
	$(id).children("div").each(function(){
		tmp = $(this).offset().top + $(this).height();
		if (tmp > height)
			height = tmp;
	});
	$(id).children("a").children("div").each(function(){
		tmp = $(this).offset().top + $(this).height();
		if (tmp > height)
			height = tmp;
	});
	$(id).height(height- 150);			
}

function nextimage() {
	$('#entete div img').eq(visible).fadeOut(500);
	visible = (visible+1) % $('#entete div img').length;
	$('#entete div img').eq(visible).delay(500).fadeIn(1000);	
	galery();
}
