
$(document).ready(function () {
    $("a.button").mouseover(function () {
        $(this).removeClass('button');
        $(this).addClass('buttonOver');
    }).mouseout(function () {
        $(this).removeClass('buttonOver');
        $(this).addClass('button');
    });
});
