$(document).ready(function () {

    $(".button, .messageButton").hover(function () {
        $(this).stop().animate({ backgroundColor: '#666' })
    }, function () {
        $(this).stop().animate({ backgroundColor: '#333' })
    });

    $("#Print").hover(function () {
        $(this).stop().animate({ backgroundColor: '#666' })
    }, function () {
        $(this).stop().animate({ backgroundColor: '#333' })
    });

    $("input.search").hover(function () {
        $(this).stop().animate({ backgroundColor: '#C31D39' })
    }, function () {
        $(this).stop().animate({ backgroundColor: '#4372B8' })
    });

    $(".BigButton").hover(function () {
        $(this).contents("div, p").stop().animate({ color: '#000' })
    }, function () {
        $(this).contents("div, p").stop().animate({ color: '#666' })
    });

});
