  $(document).ready(function(){
   setTimeout(function(){
  $("div.reminder").slideUp("slow", function () {
  $("div.reminder").remove();
      });

}, 5000);
 });
