$(document).ready(function(){ 

  $(".menu").hover(function(){
     $(this).addClass("menu-lite"); 
  },function(){
     $(this).removeClass("menu-lite"); 
  });

  $(".button").click(function(){
      var propertyid=this.id;
      $("#page_right").load("page_right.php?propertyid="+propertyid);
      $('html, body').animate({scrollTop:0}, 'slow'); 
      return false;
  });


});

