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