		$('#log').hide();
		$("#registerForm").submit(function() {
                                
                var sentData="";
                $(':input').each(function() {
                                sentData = sentData + $(this).attr('name')+"="+$(this).attr('value')+"&"; 
                });
                
                $.ajax({
                	type: "POST",
                	url: "http://kiteszkola.pl/register.php",
                	data: sentData,
                	dataType: 'html',
                	success: function(response){
                	
                	$('#log').fadeIn('slow',function(){
                                $('#log').html(response);
                                //$('#log').hover(function () {
                                $('#sendform').mouseout(function () {
                                $('#log').fadeOut('slow',function(){
                                        if(response.search(/class="okey"/) > 0 ){
                                        
                                        }
                                });
                                });
                        });
                        }
                });
                return false;
		});
