// stuff to do when dom is loaded
$(document).ready(function(){

  $('#disclaimer').animate({
        bottom: 0
      }, 5000, function() {
    
    });
    
  $('a#clear').click(function(){
      $('#disclaimer').animate({
          bottom: "-500px"
        }, 5000, function() {
      
      });
    });

});
