
$(document).ready(function(){

  var current = $("#premier");
  var taille_max = 970-($("#accordeon ul li").length*75); //max width
  var taille_min = 75; //min width
  $("#accordeon ul li div img").click(function() {

      $(current).parent().children("div").css("width","0px");
    $(current).parent().animate({width: taille_min}, { queue:false, duration:200 });
    
	$(this).parent().animate({width: taille_max}, { queue:false, duration: 200});
        $(this).parent().children("div").animate({width: (taille_max-75)}, { queue:false, duration: 200});
        //$(this).parent().css("width",parseInt((taille_max-75))+"px");
	current = this;
  });
//$("#premier").trigger("click");
	$("#premier").parent().attr("style","width: "+taille_max+"px; overflow-x: hidden; overflow-y: hidden; display: block; ");
       
        $("#premier").parent().children("div").attr("style","width: "+(taille_max-75)+"px; overflow-x: hidden; overflow-y: hidden; display: block; ");
        
//$("#current").trigger("click");



});

    
