$(document).ready(function() {

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

	$('.next2').click(function() {
		$('#text2').hide();
		$('#text3').show(); 		
	});
	$('.prev2').click(function() {
		$('#text3').hide();
		$('#text2').show(); 		
	});
	$('#text2').hide(); 
	$('#text3').hide();
});

