$(document).ready(function()
{
	$("#username").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#msgbox").removeClass().addClass('messagebox').text('Laddar...').fadeIn(1000);
		//check the username exists or not from ajax
		$.post("avaible_users.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('Anv\xe4ndarnamnet finns redan').addClass('messageboxerror').fadeTo(900,1);
			});		
          }
		  else if(data=='yes') //if username 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('Ok!').addClass('messageboxok').fadeTo(900,1);
			});
		  }
		  else
		  {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('Kan ej l\xe4mnas tomt').addClass('messageboxerror').fadeTo(900,1);	
			});
		  }
				
        });
 
	});
});