// Affichage de tableau aleatoire

var NumberPaintings = 36

function DisplayRandomPainting() {
	document.write('<img style=" width: 120px;" src="images/petitTableaux/tableau'+ Math.round((Math.random()*NumberPaintings)+1)+'.jpg" hspace="5">');
}

