function affiche_photo() {
	var choix_photos = document.getElementById('choix_photos');
	var liens = choix_photos.getElementsByTagName('a') ;
	var photo = document.getElementById('photo') ;
	
	for (var i = 0 ; i < liens.length ; ++i) {
		liens[i].onclick = function() {
			photo.src = this.href;
			return false;
		};
	}
}
window.onload = affiche_photo;