Aquí tienes:
http://jsfiddle.net/MCTWY/2/
Solo he modificado la parte de jQuery añadiendo una condición:
Código Javascript
:
Ver originalvar currCont = $('.acc-content').eq(currIndex);
if(currCont.css("height")=="0px")
$('.acc-content').eq(currIndex).stop().animate({ height: targetHeight }, animTime);
else
$('.acc-content').eq(currIndex).stop().animate({ height: 0 }, animTime);
Salu2.