/**
 * @author jean pierre carl VIGUER ( http://www.jpviguer.com )
 * 
 *         Creation : 2 avril 2009
 */
function onLoad() {
	var animName;

	animName = "RainbowExplosion";
	anim1 = new Animation( "homePage/swf/", animName, "CS16x16x16", 3, "");
	addListAnim( anim1);
	divHomePage = document.getElementById("divHomePage1");
	anim1.addAnimToDiv( divHomePage);

	anim2 = new Animation( "homePage/swf/", animName, "Cube16x16x16", 3, "");
	addListAnim( anim2);
	divHomePage = document.getElementById("divHomePage2");
	anim2.addAnimToDiv( divHomePage);

	anim3 = new Animation( "homePage/swf/", animName, "HS16x16x8", 3, "");
	addListAnim( anim3);
	divHomePage = document.getElementById("divHomePage3");
	anim3.addAnimToDiv( divHomePage);

	anim1.show();
	anim2.show();
	anim3.show();
}

