(function($){$.fn.comments={};$.fn.comments.defaults={commentsFormTrigger:'.commentsFormTrigger',commentsFormContainer:'.commentsFormContainer',commentsFormContent:'#commentsFormContent',commentsFormContentMaxChars:500,commentsFormButtonAdd:'#commentsFormButtonAdd',commentsFormButtonCancel:'.commentsFormButtonCancel',commentsListContainer:'.commentsList',commentsListButtonDelete:'.commentsListButtonDelete',commentsListButtonShowMore:'.commentsListButtonShowMore',commentsAnimationDuration:200};$.fn.comments.options={};$.fn.comments.init=function(options){$.fn.comments.options=options=$.extend($.fn.comments.defaults,options);$.fn.comments.commentsFormTrigger=$('body').find($.fn.comments.options.commentsFormTrigger);$.fn.comments.commentsFormContainer=$('body').find($.fn.comments.options.commentsFormContainer);$.fn.comments.commentsFormForm=$($.fn.comments.commentsFormContainer).find('form');$.fn.comments.commentsFormContent=$($.fn.comments.commentsFormContainer).find($.fn.comments.options.commentsFormContent);$.fn.comments.commentsFormButtonAdd=$($.fn.comments.commentsFormContainer).find($.fn.comments.options.commentsFormButtonAdd);$.fn.comments.commentsFormButtonCancel=$($.fn.comments.commentsFormContainer).find($.fn.comments.options.commentsFormButtonCancel);$.fn.comments.commentsListContainer=$('body').find($.fn.comments.options.commentsListContainer);$.fn.comments.commentsList=$.fn.comments.commentsListContainer.find('ul');$.fn.comments.commentsListButtonShowMore=$($.fn.comments.commentsListContainer).find($.fn.comments.options.commentsListButtonShowMore);$.fn.comments.commentsFormContent.reset=function(){$(this).val('');$(this).attr('disabled',false);$.fn.comments.commentsFormButtonAdd.attr('disabled',false);};$('body').delegate($.fn.comments.options.commentsFormTrigger,'click',$.fn.comments.commentsFormTriggerClick);$.fn.comments.commentsFormContainer.delegate($.fn.comments.options.commentsFormContent,'keyup',$.fn.comments.commentsFormContentKeyup);$.fn.comments.commentsFormContainer.delegate($.fn.comments.options.commentsFormButtonCancel,'click',$.fn.comments.commentsFormButtonCancelClick);$.fn.comments.commentsFormContainer.delegate($.fn.comments.options.commentsFormButtonAdd,'click',$.fn.comments.commentsFormButtonAddClick);$.fn.comments.commentsListContainer.delegate($.fn.comments.options.commentsListButtonDelete,'click',$.fn.comments.commentsListButtonDeleteClick);$.fn.comments.commentsListContainer.delegate($.fn.comments.options.commentsListButtonShowMore,'click',$.fn.comments.commentsListButtonShowMoreClick);};$.fn.comments.animationShow=function(element){$(element).css({opacity:0});$(element).slideDown($.fn.comments.options.commentsAnimationDuration,function(){$(element).animate({opacity:1},{duration:$.fn.comments.options.commentsAnimationDuration}).removeClass('hide');});};$.fn.comments.animationHide=function(element){$(element).animate({opacity:0},{duration:$.fn.comments.options.commentsAnimationDuration,complete:function(){$(this).slideUp($.fn.comments.options.commentsAnimationDuration,function(){$(this).addClass('hide');})}});};$.fn.comments.animationToggle=function(element){if($(element).hasClass('hide')){$.fn.comments.animationShow(element);}else{$.fn.comments.animationHide(element);}};$.fn.comments.ajaxAddComment=function(){data={commentsFormContent:$.fn.comments.commentsFormContent.val(),isSend_commentAdd:'1'};if($('#fancybox-content').find('#captcha-input').val()!==undefined){data.captchaInput=$('#fancybox-content').find('#captcha-input').val();data.captchaId=$('#fancybox-content').find('input#captcha-id').val();} if($.trim(data.commentsFormContent)==''){$.fn.comments.commentsFormContent.reset();return false;} $.ajax({url:$.fn.comments.commentsFormForm.attr('action'),type:$.fn.comments.commentsFormForm.attr('method'),data:data,success:$.fn.comments.ajaxAddCommentSuccess,error:$.fn.comments.ajaxError});};$.fn.comments.ajaxAddCommentSuccess=function(response){if(response.captcha!=undefined){response.captcha='