Okay, so I found a solution, though it’s not as user friendly for my client as I would like, nor is it a legitimate plugin it does the job for now:
1. Download the Javascript effects library here.
2. Upload the Javascripts into a directory within wp-content/themes/your-theme
3. Call them into your index.php file (or single, page, archive, archives, etc…) like so:
<script src="<?php bloginfo('template_directory'); ?>/js/prototype.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_directory'); ?>/js/scriptaculous.js" type="text/javascript"></script>
<script src="<?php bloginfo('template_directory'); ?>/js/accordion.js" type="text/javascript"></script>
4. Select a page you want the effect on, then select the text you want to use as your toggle button and select the “Insert/Edit Attributes” icon which *should* appear in the lower left portion of your “Kitchen Sink”. (Kitchen Sink is an icon you select in the Visual Editor which gives you a new row of formatting options upon selection.)
5. When the “Insert/Edit Attributes” option window pops up select “(value)” and a new text input will appear. Simply type “accordion-toggle” there.
6. After you have completed that step, do the same for the content you want hidden except type “accordion-content” instead.
Publish you’re page and viola!
Please let me know if any of you have problems and I will revise these instructions. Thanks!