$(function() { $(".listTable tr:not(#trspecial)").mouseenter(function() { $(this).css("background", "#CEE3FB").siblings().css("background", "#FFFFFF"); }); $(".listTable tr:not(#trspecial)").mouseout(function() { $(this).css("background", "#FFFFFF"); }); });