function FabVisionneusePhotos()
{

	var photos = document.getElementById('fab_photo_choix') ;
	if (photos == null) {return false;}
	else{
		var liens = photos.getElementsByTagName('a') ;
		var big_photo = document.getElementById('fab_photo_affiche') ;
		
		for (var i = 0 ; i < liens.length ; ++i) {
			liens[i].onclick = function() {
				big_photo.src = this.href; 
				big_photo.alt = this.title; 
				return false;
			};
		}
	}
	
	var photos01 = document.getElementById('fab_photo_choix_01') ;
	if (photos01 == null) {return false;}
	else{
		var liens01 = photos01.getElementsByTagName('a') ;
		var big_photo01 = document.getElementById('fab_photo_affiche_01') ;
		
		for (var i = 0 ; i < liens01.length ; ++i) {
			liens01[i].onclick = function() {
				big_photo01.src = this.href; 
				big_photo01.alt = this.title; 
				return false;
			};
		}
	}
	var photos02 = document.getElementById('fab_photo_choix_02') ;
	if (photos02 == null) {return false;}
	else{
		var liens02 = photos02.getElementsByTagName('a') ;
		var big_photo02 = document.getElementById('fab_photo_affiche_02') ;
		
		for (var i = 0 ; i < liens02.length ; ++i) {
			liens02[i].onclick = function() {
				big_photo02.src = this.href; 
				big_photo02.alt = this.title; 
				return false;
			};
		}
	}
}
window.onload = FabVisionneusePhotos;