// JavaScript Document

function opacityMax() {
		var big_photo = document.getElementById('PhotoPrincipale') ;
		big_photo.style['opacity']=1;

}

function opacityMin() {
		var big_photo = document.getElementById('PhotoPrincipale') ;
		big_photo.style['opacity']=0.5;
	
}

function affichageImage(value) {
	var url_m = value.replace(/-p.jpg/g, '.jpg');
	var big_photo = document.getElementById('PhotoPrincipale') ;
	// Ici c'est l'élément ayant pour id big_pict qui est récupéré, c'est notre photo en taille normale
	big_photo.src=url_m;
	return false;
}


function beginTimeout () {
	
	setTimeout ('launchCarousel()',3600);
	
}


function launchCarousel() {

	/*var cadreIntro 		= document.getElementById ("cadrePrincipalIntro");
	cadreIntro.style['display']="none";
	var cadrePrincipal 	= document.getElementById ("cadrePrincipal");
	cadrePrincipal.style['display']="block";
	var bandeauProduits 	= document.getElementById ("bandeauProduits");
	bandeauProduits.style['display']="block";*/

window.location.replace("http://www.lesgresdecologne.com/galerie_photos.html")
}