﻿// Paramétrage Jquery

jQuery().ready(function(){
	
// Galerie
	
	$('.galerie_main').click(
		function() {
			if($(this).find("li:last").attr("galerie")!=0){
				var ymove = "-400px";
				$(this).find("li:first").animate(
					{  marginTop: ymove},
					1200, 
					function() {
						$(this).parent().find("li:last").after("<li>"+$(this).parent().find("li:first").html()+"</li>");
						$(this).parent().find("li:first").remove();
					}
				);
			}else{
				$(this).css("cursor","normal");
			}
			return false;
		}
	);
	
});
