      $(document).ready(function() {
       // hides the box as soon as the DOM is ready
       // (a little sooner than page load)
        $('#contactbox').hide();
		
        // toggles the box on clicking the noted link 
         $('a#contactlink').click(function() {
         $('#contactbox').toggle(500);
		 //$('#contactlink').text('close');
		   return false;
			 });							   

			
			
		 
 
      });
	  
	  
