﻿$(function() {
    $(".button").hover(function() {
        $(this).animate({ backgroundColor: "#BFD5D5" }, "fast");
    }, function() {
        $(this).animate({ backgroundColor: "#CEDEDE" }, "fast");
    });

    HighlightMessage();
});