/*
vPack JS
generated 2010.09.05 07:48:46
*/

/* elnino / comments.js */

$(document).ready(function()
{$('#commentsAdd').click(function()
{$('#commentsForm').show();return false;});$('#commentsForm').bind('submit',function(e)
{var params=$(this).serialize();$('#commentsError').html('');$('#commentsForm :input').attr('disabled','disabled');jQuery.ajax({type:'POST',url:'/elnino/elninoAddComment/',data:params,dataType:'html',cache:false,success:function(data,textStatus)
{if(data==-1)
{$('#commentsError').html('Uzupełnij podpis, adres e-mail oraz treść.');}
else
{if(data==-2)
{$('#commentsError').html('Błąd wewnętrzny - komentarz nie został zapisany.');}
else
{if(data==-3)
{$('#commentsError').html('Adres e-mail lub WWW jest błędny.');}
else
{$('#comments').prepend(data);$('#comments .boxInfo').remove();$('#commentsBody').val('');$('#commentsError').html('');$('#commentsForm').hide();$.cookie('commentsLogin',$('#commentsLogin').val(),{path:'/',expires:365});$.cookie('commentsEmail',$('#commentsEmail').val(),{path:'/',expires:365});$.cookie('commentsWww',$('#commentsWww').val(),{path:'/',expires:365});}}}
$('#commentsForm :input').attr('disabled','');}});e.preventDefault();});});