$(document).ready(function()
{
  //first slide down and blink the message box
  $("#object").animate({
  top: "110px"
  }, 300 ).fadeIn(1000);

  //close the message box when cross red image is clicked
  
     $("#object").fadeOut(5000);
  
});

