$(document).ready(function() { var showText='see details'; var hideText='close'; var is_visible = false; $('.toggle').prev().append(' '+showText+''); $('.toggle').hide(); $('a.toggleLink').click(function() { if ($(this).text()==showText) { $(this).text(hideText); $(this).parent().next('.toggle').slideDown('slow'); } else { $(this).text(showText); $(this).parent().next('.toggle').slideUp('slow'); }; return false; }); });