/* http://www.developpement-web.net */
var time_p = 3000;

/**********************************************/

var current_image_p = 0;
var next_image_p = 1;
var image_p = new Array();

function init_p() {
	if(document.getElementsByClassName("image_p")) {
		image_p = document.getElementsByClassName("image_p");
		for(i=1; i < image_p.length; i++) {
			image_p[i].style.display = "none";
		}
	}
	
	if(image_p.length > 1) galerie_p();
}

function galerie_p() {
	self.setTimeout("nextimage_p()",time_p);	
}

function nextimage_p() {
	new Effect.Fade(image_p[current_image_p]); new Effect.Appear(image_p[next_image_p]);
	
	if(next_image_p == (image_p.length-1)) {
		current_image_p = next_image_p;
		next_image_p = 0;
	} else {
		current_image_p = next_image_p;
		next_image_p++;
	}
	galerie_p();
}
