      $(document).ready(function(){
	  
	  $('#terms').hide();
   
   			$('a').click(function(){
			
			$('#terms').show('slow');
   
   });
   
   $('a#close').click(function(){
   		$('#terms').hide('slow');
		})
   
 	  });
