/**
	* Animation des diapositives
	*/

jQuery.noConflict();

var j = 0;

jQuery(function () {
	// Lance l'animation
	animation(aI, t1, t2, j, 6000);
});

function animation(aI, t1, t2, j, temps) {
	changeDiapo(aI[j], t1[j], t2[j]);
	if (j == aI.length - 1) {
		j = 0;
	} 
	else {
		j++;
	}
	setTimeout(function() {
							animation(aI, t1, t2, j, temps);
						},temps);
}

// FadeIn
function changeDiapo(sSrc, sTitre, sTexte) {
	jQuery("#titreAnim").html(sTitre).css("display", "none").slideDown(1000);
	jQuery("#texteAnim").html(sTexte).css("right", "-255px").animate({right: '20px'}, 2000);
	jQuery("#photoAnim").attr("src", "images/animation/" + sSrc).css("display", "none").fadeIn(3000);
}

// Lien Cadre
jQuery(function() {
	jQuery("#imgOnglet").css({cursor: 'hand', cursor: 'pointer'})
									.click(function() {
										window.location.href = "formulaireDemandeDevis.php";
									});
});

