$(document).ready(function(){
	// jQuery slideToggle
	/* 
	this script works with the code that Wordpress automatically outputs and only requires a small amount of hand coding on the link.
	To use this script make a link with href='#' and add class='toggleButton' in the html view, now back on the WYSIWYG editor make a new 
	paragraph under the link containing the text you want to toggle and the script will take care of the rest. If you have multiple paragraphs 
	for the slide down then you need to wrap them all in a div.
	*/
	$('.toggleButton').parent().next('p,div').hide();
        $('.toggleButton').click(function() {
			$(this).parent().next('p,div').slideToggle('slow');
			    return false;
         });
});