$(document).ready(function() {
	
	

	
	/* проверка логина */
	
	$('.reg_login').blur(function(){ 

		$("#error_login").load('http://transfert-vrn.ru/register/login_check.html', {login: document.getElementById('reg_login').value});
		return false;
	});
	
	$('.email').blur(function(){ 

		$("#error_email").load('http://transfert-vrn.ru/register/email_check.html', {email: document.getElementById('email').value});
		return false;
	});
	
	$('.reg_password').blur(function(){ 

		$("#error_password").load('http://transfert-vrn.ru/register/password_check.html', {password: document.getElementById('reg_password').value});
		return false;
	});
	
		$('.repeatpassword').blur(function(){ 

		$("#error_repeatpassword").load('http://transfert-vrn.ru/register/repeatpassword_check.html', {repeatpassword: document.getElementById('repeatpassword').value,password: document.getElementById('reg_password').value});
		return false;
	});
	
	
	
	});
