$(document).ready(function(){
	$('#extra-text').hide();
	$('ul.controller').show();

	$('.controller .read-more a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.hide-this').fadeIn('slow');
		$('#extra-text').slideDown('fast');
	});
	
	$('.controller .hide-this a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.read-more').fadeIn('slow');
		$('#extra-text').slideUp('fast');
	});
});
