﻿$(document).ready(function() { 

$("tr.song_list").hover( 
function () { 
$(this).css({"background-color": "#000000" }); 
}, 
function () { 
$(this).css({"background-color": "#253a41" });
} 
); 
}); 
