$(document).ready(function() {
var showText='More infomation';
var hideText='More information';
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;

});
});

