jQuery(document).ready(function()
{
  jQuery('.link-toggle-like a').live('click', function(e) {

    e.preventDefault();

    var $this = jQuery(this);

    $this.parent('.link-toggle-like').parent().children('.link-toggle-like').show();
    $this.parent('.link-toggle-like').hide();

    jQuery.getJSON($this.attr('href'), function(data) {

      // prevents compulsive clicks
      if (data.manyclick == 1) {

        jQuery.notice.display(data.message, 'notice');

        $this.parent('.link-toggle-like').parent().children('.link-toggle-like').hide();

        $('#watching_state_infos').fadeOut('fast');

      } else if (data.mode == 1) {
        
        jQuery.notice.display(data.message, 'notice');

        jQuery('#watching_state_infos').fadeIn('fast');

        if ('top_spot' == data.type) {
          //  Enabled like popup
          jQuery('#likePopupLink').click();
        }

      } else {
        jQuery('#watching_state_infos').fadeOut('fast');
      }
    });
  });
});
