imgs = new Array();

imgs[0]="photos/escalier/escalier007.jpg";
imgs[1]="photos/marquises_veranda/Photo1035.jpg";
imgs[2]="photos/escalier/Photo1024.jpg";
imgs[3]="photos/portails/Photo1020.jpg";
imgs[4]="photos/garde_corps/Photo1062.jpg";


imgwidth='140px';
imgheight='155px';

function changeimg() {
	$('menumilieu2').innerHTML = '<img id="milieu2img" src="'+imgs[Math.ceil(Math.random()*imgs.length-1)]+'" style="display:none;margin-left:25px;height:'+imgheight+';width:'+imgwidth+';" alt="" />';
	try { new Effect.Appear('milieu2img', {duration:1, from:0, to:1}); } catch(e) { }
	setTimeout("new Effect.Opacity('milieu2img', {duration:1, from:1, to:0});",4000);
	setTimeout("changeimg()",5000);
}

window.onload = function() {
	changeimg();
	for (i=0;i<imgs.length;i++) {
		eval('j'+i+' = new Image;');
		eval('j'+i+'.src = imgs['+i+'];');
	}
}