
<!---------------------------------+
//  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()
{
	

	
	$("#email").blur(function()
	{
		//remove all the class add the messagebox classes and start fading
		$("#msgbox").removeClass().addClass('messagebox').text('Checking...').fadeIn("slow");
		
			emailval=$("#email").val();
		$.post("http://www.betterphotography.in/wpoy/index.php/regform/CheckEmailExists/",{email:emailval } ,function(data)
        {
			
		  if(data=='no') 
		  {
		  	$("#msgbox").fadeTo(200,0.1,function() //start fading the messagebox
			{ 
			   $(this).html('Email Already exists').addClass('messageboxerror').fadeTo(900,1);
				$("#email").val('');
			});		
          }
		  else
		  {
		  	$("#msgbox").fadeTo(200,0.1,function()  //start fading the messagebox
			{ 
			   $(this).html('').addClass('messageboxok').fadeTo(900,1);	
			});
		  }
				
        });
 
	});
});

