$(document).ready(function(){
	$('#extraText').hide();
	$('#controller').show();

	$('#controller #readMore a').click(function(){
		$(this).parent().fadeOut('fast');
		$('#hideThis').fadeIn('slow');
		$('#extraText').slideDown('fast');
	});
	
	$('#controller #hideThis a').click(function(){
		$(this).parent().fadeOut('fast');
		$('#readMore').fadeIn('slow');
		$('#extraText').slideUp('fast');
	});
});
