 $(document).ready(function(){

   $('#pageswitch1').click(function(){
	   $('div#page2').toggle('slow');
	   return false;
   });
 });