$(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");
});
});