Only one DOCTYPE allowed per page and it should be the very first thing in the source code of the page.
All this script needs a DOCTYPE for is to invoke standards mode. The one you have at the top does that. The second one might be the problem. In any case it can be safely removed.
I just tried that, and it didn't fix it. So I tried updating jQuery. That worked, sort of. But I found I also had to increase the height of the first accordion to 900.
To summarize, remove:
Change:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
to:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
Change:
Code:
<script type="text/javascript">
animatedcollapse.addDiv('about_us', 'fade=1,height=600px')
animatedcollapse.addDiv('wedding_party', 'fade=1,height=1935px')
animatedcollapse.addDiv('where', 'fade=1,height=690px')
animatedcollapse.addDiv('acc . . .
to:
Code:
<script type="text/javascript">
animatedcollapse.addDiv('about_us', 'fade=1,height=900px')
animatedcollapse.addDiv('wedding_party', 'fade=1,height=1935px')
animatedcollapse.addDiv('where', 'fade=1,height=690px')
animatedcollapse.addDiv('acc . . .
You may also want to increase the height of 'wedding_party' as well. perhaps one or more of the others too.
After that clear the browser's cache and reload the page and see what you've got.
Bookmarks