 $(document).ready(function(){
  
$(".productListing tr").hover(
  function () {
    $(this).addClass("row_over");
  },
  function () {
    $(this).removeClass("row_over");
  }
);

$(".neueArtikel a").hover(
  function () {
    $(this).addClass("row_over");
  },
  function () {
    $(this).removeClass("row_over");
  }
);


 });

