$("[id$='_nuRow'").hover(
function (){
$('#' + this.id).css('background-color', 'grey');
},
function (){
$('#' + this.id).css('background-color', '');
}
);