brk adlı üyeden alıntı

$(document).ready(function(){
// .degis classına sahip divler üzerine gelince arkaplan rengini #eee olarak ayarla
$("div.degis").mouseover(function() {
$(this).css("background", "#eee");
}).mouseout(function() {
$(this).css("background", "#aaa");
});
});


Denedim ve tam istediğim gibi oldu. Çok teşekkür ederim.