starting from existing fiddle, I\'ve created this sample: http://jsfiddle.net/2DaR6/90/
Here\'s the html code:
You should not use jquery accordion for this kind of purpose. However, its relatively easy to override any element events behaviour. When accordion is initialized, you just have to override click handler to corresponding elements.
In your case, this giving something like this:
$('#accordion .accClicked')
.off('click')
.click(function(){
$(this).next().toggle('fast');
});
See working jsFiddle