﻿$(function() {
    $(".button").hover(function() {
        $(this).animate({ backgroundColor: "#B3D67A" }, "fast");
    }, function() {
        $(this).animate({ backgroundColor: "#EFE8DB" }, "fast");
    });
});