 jQuery(window).load(function(){
   setTimeout(function(){
  jQuery("div.fadeit").fadeOut(3000, function () {
  jQuery("div.fadeit").remove();
      });
    
}, 1000);
 });
