jQuery(document).ready(function() {
// hides the extra content as soon as the DOM is ready
// (a little sooner than page load)
jQuery('.togglecontent').hide();
jQuery('.toggletestimonial').hide();

// toggles the extra content on clicking the noted link 
jQuery('a.showhide-toggle').click(function() {
jQuery(this).parent().next('.togglecontent').slideToggle(800);
jQuery(this).text(jQuery(this).text() == 'Read Less [-]' ? 'Read More [+]' : 'Read Less [-]');
return false;
});

jQuery('a.showhide-testimonial').click(function() {
jQuery(this).parent().next('.toggletestimonial').slideToggle(800);
jQuery(this).text(jQuery(this).text() == '[-]' ? '[+]' : '[-]');
return false;
});
});
