$(document).ready(function(){

	$("#ajaxsubmit").click(function(){
		$.post('/tools/komentuj.php', {
			redirect: $("#ajaxredirect").val(),
			page: $("#ajaxpage").val(),
			content: $("#commentArea").val(),
			username: $("#ajaxusername").val(),
			// mail: $("#ajaxmail").val(),
			captcha: $("#ajaxcaptcha").val()
		}, function(data){
			$('#alertwin .message').html(data);			
			$('#alertwin').fadeIn();
			setTimeout(function(){
				$('#alertwin').fadeOut('slow')
			}, 1500);
		})
		return false;
	});


	$('#alertwin .close').click(function(){
		$('#alertwin').fadeOut('slow');
	});

});


