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

	$('.controllers .showText a').click(function(){
		$(this).parent().fadeOut('fast');
		$('.hideText').fadeIn('slow');
		$('.extraText').slideDown('fast');
	});
	
	$('.controllers .hideText a').click(function(){
		$(this).parent().fadeOut('fast');
		$('.showText').fadeIn('slow');
		$('.extraText').slideUp('fast');
	});
});
