$(document).ready(function() {
var showText='Read More';
var hideText='Hide';
$('.readmore').prev().append(' (<a href="#" class="readmore">'+showText+'</a>)');
$('.hide1').hide();
$('a.readmore').click(function() {
$(this).html ($(this).html()==hideText ? showText : hideText);
$('.hide1').slideToggle('slow');
return false;
});

var showText='Read More';
var hideText='Hide';
$('.readmore2').prev().append(' (<a href="#" class="readmore2">'+showText+'</a>)');
$('.hide2').hide();
$('a.readmore2').click(function() {
$(this).html ($(this).html()==hideText ? showText : hideText);
$('.hide2').slideToggle('slow');
return false;
});


});