var tempColor; $(".listTable tr:even").css("backgroundColor", "#B3D59A"); $(".listTable tr:odd").css("backgroundColor", "#9AB3D5"); $(".listTable tr").mouseover(function () { tempColor = $(this).css("backgroundColor"); $(this).css("backgroundColor", "#D59ABF"); }).mouseout(function () { $(this).css("backgroundColor", tempColor); });