﻿// Paramétrage Jquery

jQuery().ready(function(){
	
// Galerie
	
	$('.galerie_main').find("li:first").animate(
		{  marginTop: -20},
		500, 
		function() {
			$(this).animate(
				{  marginTop: 0},
				500, 
				function() {}
			);
		}
	);
	
	$('.galerie_main').click(
		function() {
			if($(this).find("li:last").attr("galerie")!=0){
				var ymove = "-584px";
				$(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;
		}
	);
	
	/*$('#lbClose').click(
		function() {
			// Ajout rafraîchissement de l'iframe
			//document.all.frameNbArticles.src="http://editionpopulaire.com.rentashop.fr/html/nb-panier.htm";
			//window.frames['frameNbArticles'].reload();
			
			// Fin ajout
		}
	);*/
	
});