// Andy Langton's show/hide/mini-accordion - updated 23/11/2009
// Latest version @ http://andylangton.co.uk/jquery-show-hide

$(document).ready(function() {
var showText='Read More';
var hideText='Hide';
var is_visible = false;
$('.toggle').prev().append(' (<a href="#" class="toggleLink">'+showText+'</a>)');
$('.toggle').hide();
$('a.toggleLink').click(function() {
is_visible = !is_visible;
$(this).html( (!is_visible) ? showText : hideText);
$(this).parent().next('.toggle').toggle('slow');
return false;

});
});