$(document).ready(function() {

// choose text for the show/hide link - can contain HTML (e.g. an image)
var showText='View Info';
var hideText='Hide Info';

$('.toggle').prev().append(' (<a href="#" class="toggleLink">'+showText+'</a>)');
$('.toggle').hide();
$('a.toggleLink').click(function() {
$(this).html ($(this).html()==hideText ? showText : hideText);
//$('.toggle').hide();$('a.toggleLink').html(showText);
$(this).parent().next('.toggle').toggle('slow');
return false;

});
});