$(function() {
  $('button.moreinfo').bind('click',function() {
    document.location.href = $(this).parents('a').attr('href');
  });
  $('div.property').bind('click',function() {
    document.location.href = $('h4 a',this).attr('href');
  }).hover(function() { $(this).addClass('over'); },function() { $(this).removeClass('over'); });
});
