 $(document).ready(function() {
   $('#wrap,#wrap1,#wrap2,#wrap3,#wrap4,#wrap5,#wrap6,#wrap7,#wrap8,#wrap9').hide();
	
	$('#hide').click(function(){
     $('div#wrap').hide('slow');
   });

 	$('#show').click(function(){
     $('div#wrap').show('slow');
   });

	$('#hide1').click(function(){
     $('div#wrap1').hide('slow');
   });

 	$('#show1').click(function(){
     $('div#wrap1').show('slow');
   });
	
	$('#hide2').click(function(){
     $('div#wrap2').hide('slow');
   });

 	$('#show2').click(function(){
     $('div#wrap2').show('slow');
   });
	
	$('#hide3').click(function(){
     $('div#wrap3').hide('slow');
   });

 	$('#show3').click(function(){
     $('div#wrap3').show('slow');
   });
	
	$('#hide4').click(function(){
     $('div#wrap4').hide('slow');
   });

 	$('#show4').click(function(){
     $('div#wrap4').show('slow');
   });
	
	$('#hide5').click(function(){
     $('div#wrap5').hide('slow');
   });

 	$('#show5').click(function(){
     $('div#wrap5').show('slow');
   });
	
	$('#hide6').click(function(){
     $('div#wrap6').hide('slow');
   });

 	$('#show7').click(function(){
     $('div#wrap7').show('slow');
   });
	
	$('#hide8').click(function(){
     $('div#wrap8').hide('slow');
   });

 	$('#show8').click(function(){
     $('div#wrap8').show('slow');
   });
	
		$('#hide8').click(function(){
     $('div#wrap8').hide('slow');
   });

 	$('#show9').click(function(){
     $('div#wrap9').show('slow');
   });
	
});



