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