//<!---------------------------------+
//  Developed by Roshan Bhattarai 
//  Visit http://roshanbh.com.np for this script and more.
//  This notice MUST stay intact for legal use
// --------------------------------->
$(document).ready(function()
{
	$("#dark_username").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#msgbox").removeClass().addClass('messagebox').text('Checking...').fadeIn("slow");
		//check the username exists or not from ajax
		$.post("checks/user_availability.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('Username already taken.').addClass('messageboxerror').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('Username not used yet.').addClass('messageboxok').fadeTo(900,1);	
			});
		  }
				
        });
 
	});
});


$(document).ready(function()
{
	$("#dark_mail").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#mailmsgbox").removeClass().addClass('mailmsgbox').text('Checking...').fadeIn("slow");
		//check the username exists or not from ajax
		$.post("checks/mail_check.php",{ user_name:$(this).val() } ,function(data)
        {
		  if(data=='no') //if username not avaiable
		  {
		  	$("#mailmsgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('This e-mail address is already registered.').addClass('mailmsgboxerror').fadeTo(900,1);
			});		
          }
		  else
		  {
		  	$("#mailmsgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			  //add message and change the class of the box and start fading
			  $(this).html('E-Mail address not yet registered.').addClass('mailmsgboxok').fadeTo(900,1);	
			});
		  }
				
        });
 
	});
});
