$(function() {
$('table tbody tr').mouseover(function() {
    $(this).addClass('selectedRow');
  }).mouseout(function() {
      $(this).removeClass('selectedRow');
   }).click(function() {
      //alert($('td:first', this).text());
   });
});
