$(document).ready(function() {

//Toggle functions
 $("#toggle-all").toggle(
                    function(){
                         $(".entry").hide('slow');
			 $("#toggle").attr("class","show-all");
                    }, function() {
                         $(".entry").show('slow');
			 $("#toggle").attr("class","hide-all");
                    });

$('div[class^=showcontent]').hide();
$('a[class^=content]').click(function() {
var $this = $(this);
var x = $this.attr("className");
$('.show' + x).toggle(1000);
$(this).text($(this).text() == '(+) Show rest of post content.' ? '(-) Hide rest of post content.' : '(+) Show rest of post content.');
return false;
});

});	