// JavaScript Document

	var ioio=0;
	var web_photo = Array ('illus1.gif','illus2.gif','illus3.gif','mp1.gif','mp2.gif','surreal_1.jpg','surreal_2.jpg');
	var web_leg = Array ('Bébé réalisé sur Illustrator','Pianiste réalisé sur Illustrator','Visage réalisé sur Illustrator','Premières initiales','Deuxième initiales','Premier travail surréaliste réalisé sur Photoshop','Deuxième travail surréaliste réalisé sur Photoshop');
	
			function affiche(){
				document.getElementById('photo_port').innerHTML='<a href="images/webdesign/'+web_photo[ioio]+'" title="'+web_leg[ioio]+'" rel="lightBox[site]"><img src="images/webdesign/vignette/'+web_photo[ioio]+'" title="'+web_leg[ioio]+'" alt="'+web_leg[ioio]+'" width=200px/></a>';
				document.getElementById('legend').innerHTML=web_leg[ioio];
			}
			function suivant(){
				if(ioio>=6){
					ioio=0;
					affiche();
				}
				else{
					ioio++;
					affiche();
				}
			}
	
			function precedent(){
				if(ioio<=0){
					ioio=6;
					affiche();
				}
				else{
					ioio--;
					affiche();
				}
			}

