﻿$(document).ready(function () {
    $("#login-link").click(function (b) {
        b.preventDefault();
        $("#login-form").slideToggle();
    });
    $(".error, .message").click(function () {
        $(this).slideUp(300, function () {
            $(this).remove();
        });
    });
    setTimeout(function () {
        $(".error, .message").slideUp(300, function () {
            $(this).remove();
        });
    }, 3000);
});
