jQuery remover alerta de bootstrap após determinado período de tempo

Eu estou usando alertas dinâmicos de bootstrap de um exemplo. Ver abaixo.

Como posso adicionar uma função de tempo limite para que o alerta seja fechado automaticamente apósX Tempo ?

HTML:

<div id="alert_placeholder"></div>

JQUERY:

bootstrap_alert = function() {
    }
bootstrap_alert.warning = function(message) {
    $('#alert_placeholder').append('<div class="alert alert-block fade in"><button type="button" class="close" data-dismiss="alert">&times;</button><h4>Info!</h4>'+ message +'</div>');
}
bootstrap_alert.info = function(message) {
    $('#alert_placeholder').append('<div class="alert alert-block alert-info fade in"><button type="button" class="close" data-dismiss="alert">&times;</button><h4>Info!</h4>'+ message +'</div>');
}

questionAnswers(2)

yourAnswerToTheQuestion