jQuery(function($){
	$('.block_toggle .ctrls a').toggle(function(){
		$(this).parents().filter('.block_toggle').find('.content').slideDown(500);
		$(this).text('Hide');

	}, function(){
		$(this).parents().filter('.block_toggle').find('.content').slideUp(500);
		$(this).text('Show More');
	});

});
