$(document).ready(function(){

	$('.fouchide').css('display','none');
	$('div.container.summary p').append('<a href="#" class="reveal">Show More &raquo;</a>');
	$('div.container.hidden p:last-child').append('<br /><a href="#" class="hide">&laquo; Hide</a>');

	$('a.reveal').click(function(){
		$(this).hide();
		$(this).parents('div.container').next('div.hidden').slideDown(1000);
		return false;
	});

	$('a.hide').click(function(){
		$(this).parents('div.container').slideUp(1000,function(){
			$(this).prev().find('a.reveal').show();
		});
		return false;
	});

});

