var images=
[
	['http://www.hc-creation.fr/images/S0.boules03.490.jpg',''],
	['http://www.hc-creation.fr/images/S1.dino3.489.jpg',''],
	['http://www.hc-creation.fr/images/S2.creche01.478.jpg',''],
	['http://www.hc-creation.fr/images/S3.creche02.479.jpg',''],
	['http://www.hc-creation.fr/images/S4.couronne01.480.jpg',''],
	['http://www.hc-creation.fr/images/S5.metz.481.jpg',''],
	['http://www.hc-creation.fr/images/S6.metz02.482.jpg',''],
	['http://www.hc-creation.fr/images/S7.lune01.483.jpg',''],
	['http://www.hc-creation.fr/images/S8.puzzle01.484.jpg',''],
	['http://www.hc-creation.fr/images/S9.puzzle02.485.jpg',''],
	['http://www.hc-creation.fr/images/S10.village.486.jpg',''],
	['http://www.hc-creation.fr/images/S11.suspension.487.jpg',''],
	['','']
];
var timeShow=2000;
var currentImage=0;

function changeImage()
{blendImage("SlideDivP1I11042","picP1I11042",images[currentImage][0],1000);
document.getElementById("picP1I11042").title=images[currentImage][1];
currentImage++;
if (currentImage>=images.length)
currentImage=0;
setTimeout("changeImage()",timeShow);
}

function init()
{images.pop();
currentImage=0;
document.getElementById("picP1I11042").src=images[0][1];
changeImage();
}

