jQuery(document).ready(function() {

// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='Read More';
var hideText='Hide';

// hide all of the elements with a class of 'toggle'
// jQuery('.toggle').hide();

// capture clicks on the toggle links
jQuery('a.toggleLink').click(function() {

// toggle the display - uncomment the next line for a basic "accordion" style
//jQuery('.toggle').hide();jQuery('a.toggleLink').html(showText);
jQuery(this).parent().next('.toggle').toggle('slow');

// return false so any link destination is not followed
return false;

});
});


