jQuery.noConflict();
jQuery(function($) {

	// Gestion des references
	$('#references').innerfade({ speed: 'slow', timeout: 3000, type: 'sequence'}); 
	
	
	
	//NEWSLETTER INSCRIPTION
	$("#d_suiveznous form").submit(function(){ 
		$.ajax({
			type: "POST",
			url: "_ajax_newsletter_inscription.php",
			data: "email="+$("#newsletter_email").val(),
			success: function(html){
				$("#newsletter_email").val(html);
			}
		});
	
		return false;
	});
	
	$("#newsletter_email").click(function(){
		$("#newsletter_email").val("");
	});
	
	//Galerie photo et videos
	$(".galerie a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'facebook',slideshow:3000, autoplay_slideshow: false,social_tools:false});
	
	//Galerie realisation
	$('.realisations img').jcaption({
		copyStyle: true,
		animate: true,
		show: {height: "show"},
		hide: {height: "hide"}
	});
});
