(function($){
	$().ready( function() {

		res = $.ajax({url:$('#popup form').attr('action'),async:false}).responseText;

		if ( res == 'up' )
			$('#popup').fadeIn();

		close_popup = function() {$('#popup').fadeOut();}

		$('#popup .close').click( close_popup );

		$('#popup form').submit( function() {

			phone = $('#popup input:first').val();
			if ( phone.length < 6 )
				res = '';
			else
				res = $.ajax({url:$(this).attr('action')+'?phone='+phone,async:false}).responseText;

			if ( res == 'ok' ) {

				$(this).html('<p><a href="#" class="close"></a></p>Номер отправлен! Мы свяжемся с вами в самое ближайшее время и проконсультируем вас!</p>');
				setTimeout( close_popup, 4000 );
			}

			else {

				if ( $(this).children('.err').length ) {

					$(this).children('.err').fadeOut().fadeIn();
				}

				else $(this).append('<p class="err" style="color:red">Что-то не так с введенным номером телефона.</p>');
			}

			return false;
		});
	});
})(jQuery);

