<!--
i=Math.round(Math.random(70)*10)+1;
if(i>8){i=8};
function augmente(){
i = i+1;
	if(i<9){
	thumbTurn();
	}else{
	i=1;
	thumbTurn();
	}
}
function thumbTurn(){
setTimeout("augmente()", 2000);
document.thumb.src="images/thumbs/" + i + ".jpg";
}
//-->
