// JavaScript Document
      $(document).ready(function(){
	  
		/* Banner animation */
		$('#readmore').click(function(){
			$('#content1').show('slow');
			$('#click').hide();
			return false;
		});
   
		$('#readless').click(function(){
			$('#content1').hide('slow');
			$('#click').show('slow');
			return false;
		})
		$('#content1').hide();
		

   
 	  });