﻿$(document).ready(function() {
    $("#alert-inner").animate({ opacity: 1.0 }, 5000)
                     .fadeOut('slow', function() {
                         $(this).remove();
                     });
});