// Java Document
function displayPics()
{
	var photos = document.getElementById('zone_imagettes') ;
	var liens = photos.getElementsByTagName('a') ;
	var big_photo = document.getElementById('big_pict') ;
	var titre_photo = document.getElementById('bandeau_imbot').getElementsByTagName('dt')[0] ;
	
	
	for (var i = 0 ; i < liens.length ; ++i) {
		liens[i].onmouseover = function() {
			big_photo.src = this.href; 
			big_photo.alt = this.title; // On change son titre
			titre_photo.firstChild.nodeValue = this.title; // On change le texte de titre de la photo
			
			return false; 	
		};
	}
		for (var i = 0 ; i < liens.length ; ++i) {
		// Au clique sur ces liens 
		liens[i].onclick = function() {
			big_photo.src = this.href;  
			big_photo.alt = this.title; // On change son titre
			titre_photo.firstChild.nodeValue = this.title; // On change le texte de titre de la photo
			
			return false; 
		
		};
		
	}	
		/*if (document.all))  // for IE
		{	for ( j=0; j<document.getElementsByTagName("img").length; j++ ) {
				document.getElementsByTagName('img')[j].setAttribute(''," ");}
		}
		else // for Mozilla
		{	for ( j=0; j<document.getElementsByTagName("img").length; j++ ) {
				document.getElementsByTagName('img')[j].setAttribute('',"");}
		}*/
	
}

window.onload = displayPics;

