$(document).ready(function() {
	$('#text1').hide();
	$('#text2').hide();

   $('#toggle1').click(function(){
     $('#text1').slideToggle();
   });
   $('#toggle2').click(function(){
     $('#text2').slideToggle();
   });
   $('#close1').click(function(){
     $('#text1').slideUp();
   });
   $('#close2').click(function(){
     $('#text2').slideUp();
   });
 });