/*Cached on 29 Dec 2020 19:52:32*/

var Like={evenements:function(){$('a#like').click(this.click);},precharger:function(){var aLikes=$('a#like');for(var i=0,l=aLikes.length;i<l;i++){$.ajax({context:aLikes[i],type:'POST',dataType:'json',url:pH7Url.base+'asset/ajax/Like/',data:'key='+encodeURIComponent($(aLikes[i]).data('key')),success:function(oData){var iVotes=parseInt(oData.votes);if(isNaN(iVotes)){iVotes='-1';}
if(iVotes>0){$(this).html(pH7LangCore.like+' <em>('+iVotes+')</em>');}else{$(this).html(pH7LangCore.like);}}});}},click:function(oEvent){var oElement=oEvent.currentTarget;$(oElement).unbind('click');$(oElement).click(function(){return false;});$.ajax({context:oElement,type:'POST',dataType:'json',url:pH7Url.base+'asset/ajax/Like/',data:'vote=1&key='+encodeURIComponent($(oElement).data('key')),success:function(oData){$(this).css({'opacity':0});$(this).addClass('like_voted');var iVotes=parseInt(oData.votes);if(isNaN(iVotes)){iVotes='-1';}
$(this).html(oData.txt);$(this).animate({'opacity':1},{'duration':'slow'});},error:function(){$('.msg').addClass('alert alert-danger').text(pH7LangCore.misloading).delay(2000).fadeOut();}});return false;}};Like.evenements();Like.precharger();