$(function(){
    $('[disposable]').each(function(){
        $(this).delay(parseInt($(this).attr('disposable'))).animate({height:'hide',opacity:'hide'},'slow',function(){$(this).remove();});
    });
})
