// JavaScript Document

/*ddaccordion.init({
	headerclass: "accordionheader", 
	contentclass: "accordioncontent", 
	revealtype: "click", 
	mouseoverdelay: 200, 
	collapseprev: false, 
	//defaultexpanded: [0], 
	onemustopen: false, 
	animatedefault: false, 
	persiststate: false, 
	toggleclass: ["", "accordionheader1"], 
	togglehtml: ["", ""], 
	animatespeed: "medium", 
	oninit:function(headers, expandedindices){ 
	},
	onopenclose:function(header, index, state, isuseractivated){ 
	}
})*/

// Accordéon page produits

$(document).ready(function(){ 
    $(".content-a").hide();
    var clic = new Number();
    $(".header-a").css("background","url(images/arrowright.gif) no-repeat right");
    $(".header-a").attr("title", "Ouvrir");
    $(".ensemble-a").click(function(){ 
            
	        if ($(this).children(".content-a").is(":visible")) {
	            clic = 1;
	        }
	        
	        if ($(this).children(".content-a").is(":hidden")) {
	            clic = 0;
	        }
	        
	        /* //////////////////////////////////////////////// */ 
	        
	
	        if ( clic === 0) {
	            //$(this).children(".content-a").prev(".header-a").css("background","url(images/arrowdown.gif) no-repeat right");
	            //$(this).children(".content-a").prev(".header-a").attr("title", "Fermer");
	            if($(".content-a") != $(this).children(".content-a")){
	                $(".content-a").hide();
	                $(".content-a").prev(".header-a").attr("title", "Ouvrir");
	                $(".content-a").prev(".header-a").css("background","url(images/arrowright.gif) no-repeat right");
	                $(this).children(".content-a").prev(".header-a").attr("title", "Fermer");
	                $(this).children(".content-a").prev(".header-a").css("background","url(images/arrowdown.gif) no-repeat right");
	            }
	        }
        	
	        if ( clic === 1 ) {
	            $(this).children(".content-a").prev(".header-a").css("background","url(images/arrowright.gif) no-repeat right");
	            $(this).children(".content-a").prev(".header-a").attr("title", "Ouvrir");
	        }
	        
	        
	        /* //////////////////////////////////////////////// */ 
	        
	        $(this).children(".content-a").slideToggle(400);

	
	});
	
    
});
