function aleatoire(N) {
	return (Math.floor((N)*Math.random()+1));
}

photo=aleatoire(5)
    					
document.write('<img src=\"images/th-c-'+photo+'.jpg\" style=\" border: 1px solid #c41e1f; width: 98px; height: 68px;\" />');
