﻿$(function() {
    // Button styles
    $(".button").hover(function() {
        $(this).animate({ backgroundColor: "#898989", color: "#ffffff" }, "fast");
    }, function() {
        $(this).animate({ backgroundColor: "#DEDDDD", color: "#000000" }, "fast");
    });

    HighlightMessage();
});

function HighlightMessage() {
    $(function() {
        $(".message-box-error").animate({ backgroundColor: "#D10D0E", color: "#FFFFFF" }, 1500);
        $(".message-box-success").animate({ backgroundColor: "#D4FDBF" }, 1500);
    });
}