// $Id$
if (Drupal.jsEnabled) {
  $(document).ready(function(){
    $('#favoriate_nodes_request').click(function(){
      var nodeSaved = function (data) {
      var result = Drupal.parseJson(data);
        $("#favoriate_post_num_show").html(result['num']);
        $("#favoriate_nodes_request").attr('class', result['class']);
        $("#favoriate_nodes_request").attr('title', result['title']);
        $("#favoriate_nodes_request").attr('href', result['href']);
        $("#favoriate_nodes_request").html(result['content']);
        if ( result['vote_points_display'] == true ) {
          $("span.vote-points").html(result['vote_points']);
        }
      }
      $.get(this.href, null, nodeSaved);    	
      return false;
    });
  });
}
