$(document).ready(function () {
    $("tr.menu_row").mouseover(function(){
        $(this).css("background-color", "#e3bc86");
    });
    
    $("tr.menu_row").mouseout(function(){
        $(this).css("background-color","");
    });
});
