$(document).ready(function(){ 
	
	
	
	
	
	

	$(".show-button").toggle(
		function(){ 
			$(".show-text").show(); 
		},
		function(){ 
			$(".show-text").hide(); 
		});
		


 });
