﻿function HighlightMessage() {
    $(function() {
        $(".messageBoxError").animate({ backgroundColor: "#D10D0E", color: "#FFFFFF" }, 1500);
        $(".messageBoxSuccess").animate({ backgroundColor: "#D4FDBF" }, 2000);
    });
}