$(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');
	});
});

$(document).ready(function(){
	$('#extra-text1').hide();
	$('ul.controller1').show();

	$('.controller1 .read-more1 a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.hide-this1').fadeIn('slow');
		$('#extra-text1').slideDown('fast');
	});
	
	$('.controller1 .hide-this1 a').click(function(){
		$(this).parent().fadeOut('fast');
		$('li.read-more1').fadeIn('slow');
		$('#extra-text1').slideUp('fast');
	});
});
