function refreshSettings()
{$('.edytuj_komentarz').click(function(){$(this).parent().parent().children("form").toggle();$(this).parent().parent().children("p").toggle();return false;});$('.usun_komentarz').click(function(){return window.confirm(lang_confirmation);});$('.cytuj_komentarz').click(function(){var comment=$(this).closest('.comment');var cauthor=jQuery.trim(comment.find('.comment_author').html());var ctext=jQuery.trim(comment.find('.comment_text_oryginal').html());var oldval=$('.submit_comment textarea').val();$('.submit_comment textarea').val(oldval+"[quote="+cauthor+"]"+ctext+"[/quote]\n");window.setTimeout("$('.submit_comment textarea').focus()",500);});}
$(document).ready(function(){refreshSettings();$('.submit_comment').submit(function(){if($(this).find('textarea').val().length==0)
{return false;}
return true;});var cache=new Array();cache[0]=$('#comments_container').html();var page=0;$('.comments_pagination a').click(function(){new_page=$(this).attr('href').substring(6);if(new_page==page)
return false;page=new_page;$('.comments_pagination li').removeClass('pagination_active');$('.comments_pagination:eq(0) li:eq('+new_page+')').addClass('pagination_active');$('.comments_pagination:eq(1) li:eq('+new_page+')').addClass('pagination_active');if(cache[page]==undefined)
{$.ajax({type:"GET",url:pagination_link+page,complete:function(XMLHttpRequest,textStatus){$('#comments_container').fadeTo('fast',1);},success:function(data){cache[page]=data;$('#comments_container').html(data);},beforeSend:function(){$('#comments_container').fadeTo('fast',.5);}});}
else
{$('#comments_container').html(cache[page]);}
refreshSettings();return false;});});
