$(document).ready(function()
		{
				$("#username").blur(function()
				{
						$("#msgbox").removeClass().addClass('messagebox').text('Sprawdzam...').fadeIn("slow");
						$.post("username_check.php",{ user_name:$(this).val() } ,function(data)
        		{
		  
			if(data=='no') //if username not avaiable
		  {
		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('Ta nazwa Użytkownika jest zajęta').addClass('messageboxerror').fadeTo(900,1);
			});		
          }
          
      if(data=='bad') //if username not avaiable
		  {
		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('Podana nazwa jest za krótka').addClass('messageboxerror').fadeTo(900,1);
			});		
          }
          
		  if(data=='ok')
		  {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('Możesz użyć takiej nazwy').addClass('messageboxok').fadeTo(900,1);	
			});
		  }
				
        });
 
	});
});
