A couple of implementation errors I see, looking at your source. Firstly, a lot of your headers/content pair look like the following:
Code:
<b><a href="#" onClick="ddaccordion.expandone('mypets', 01); return false" class="bodylink">How
long does the carpet cleaning process take?</a></b>
<div class="thepet"> We are able to clean approximately 200 square
feet per hour. This can vary slightly depending upon the amount
of soil, how much furniture needs to be moved, specialty spotting
procedures, and set-up time. </div>
The 2nd parameter within ddaccordion.expandone('mypets', 01) should be a straight integer, not prefixed with "0". Secondly, what you have with the above HTML chunk are accordion contents (with CSS class "thepet"), but no corresponding header (with CSS class "mypets"). This is problematic in that you have now more accordion contents on the page total than you have headers. You should always have an equal number of the two on the page. That's not to say you can't have arbitrary links on the page that expand a particular accordion content, but in that case, you shouldn't be adding an accordion content beneath that arbitrary link as you have now.
Bookmarks