function grandi(suj){
	suj.style.width = "170px";
	suj.style.position = "relative";
}
function retour(suj){
	suj.style.width = "150px";
	suj.style.position = "relative";
}

// Création de l'image
	function image_droite(){
		document.write('Aper&ccedil;u  galerie photos');
		document.write('\<marquee direction=\"down\" behavior=\"continue\" onmouseover=\"this.stop()\" onmouseout=\"this.start()\" style=\"height: 18em;\"\>');
		var name = navigator.appName ;
		if (name == 'Microsoft Internet Explorer') {
			for (i=0; i<5; i++){
						var image = "img/droite/pic"+i+".jpg";
						document.write("\<img class=\"pict\" src=\""+image+"\" alt=\"\" width=\"150px\" \/\> \<hr\/\>");
					}
		}else{
					for (i=0; i<5; i++){
						var image = "img/droite/pic"+i+".jpg";
						document.write("\<img class=\"pict\" src=\""+image+"\" alt=\"\" width=\"150px\" onmouseover=\"grandi(this)\" onmouseout=\"retour(this)\" \/\> \<hr\/\>");
					}
		}
		document.write('\<\/marquee\>');
	}

/* AUTRES FONCTIONS A VOIR DEBUGGER
function deplacement(pos){
	imgb = document.getelementById("imgb");
	if(pos <= 240){
		pos += 10;
	}else{
		pos = 0;
	}
	img.style.top = pos+"px";
	window.setTimeout("deplacement("+pos+")",50);
}
*/
function descend(use){
	suj = document.getElementById(use);
	suj.style.background = "green";
}	
	
