function table_products_select() {
  jQuery("#product_list tr").hover(function(){
      jQuery(this).addClass('hover');
    }, function() {
      jQuery(this).removeClass('hover');
    });
}
jQuery(function($) {
  table_products_select();
});
