function acc(divId,elt)
{
	
	$("#"+divId+" .bodyacc").css("height","0px");
	var bodyHeigth = parseInt($("#"+divId).height());
    
	var tmp=0; var i=1; var tmpElt= null;
	$("#"+divId+" .headacc").each(function(){
		if(i==elt) tmpElt = this;
		var h=parseInt($(this).height());
		tmp +=  h + 1 + 8;
		i++;
	});	
	bodyHeigth  = bodyHeigth - tmp - 4;
	
	$("#"+divId+" .headacc").click(function(){						
		$("#"+divId+" .bodyacc").animate({height:"0px"},80,function(){$(this).hide();});				
		$(this).parent().find(".bodyacc").animate({height:bodyHeigth+"px"},150);
		$("#"+divId+" .headacc").removeClass("headActiv");
		$(this).addClass("headActiv");
	});
		
	if(tmpElt) $(tmpElt).click();
	
		
	
}


