jQuery(document).ready(function($) {
  $("#search-results .property").each(function() {
    var a = $(this).find("a");
    $(this)
      .click(function(event) {
        event.preventDefault();
        document.location.href=a.attr("href");
      })
      .hover(
        function() {$(this).addClass('hover');},
        function() {$(this).removeClass('hover');}
      );
  });
});

