﻿$(document).ready(function () {

    var e = $("#statuswrapper .status");
    var height = $(e).height() + 28;


    (e).css("top", (-1 * height) + "px");

    $(e).animate({ top: "-10px" }, 600, function () {
        $(e).animate({ top: "-24px" }, 200, function () {
            $(e).animate({ top: "-8px" }, 200, function () {
                $(e).animate({ top: "-12px" }, 200);
            });
        });
    });
});
