Fade out an object(s) using javascript timer (setTimeOut) and jQuery fadeOut. In 2.5 seconds, the #divObject will start to fade out.
//show the object if not currently visible
$("#divObject").show();
setTimeout(function ()
{
$("#divObject").fadeOut("slow");
}, 2500);