$(document).ready(function() {

	$('.next').click(function() {
		$('#text1').hide();
		$('#text2').show(); 		
	});
	$('.prev').click(function() {
		$('#text2').hide();
		$('#text1').show(); 		
	});

	$('#text2').hide(); 
});

