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