$(document).ready(function () {
   $('DIV.productListingRow').hover(function() {
      $(this).addClass("productListingRowOver");
   }, function() {
      $(this).removeClass("productListingRowOver");
   });
   $('DIV.productListingRow').click(function() {
      window.location.href = $('DIV.productListingRowThumbnail A', $(this)).attr('href');
   })
});