
$(document).ready(function() {
	$('#forgot_form_submit').click(forgotFormSubmit = function() {
		
		var email = $('#forgot_email');
		
		
		$('input').removeClass('hightlight');
		$('.forgot_span').html('');
		$('.forgot_label').show();

		
		var data = '&email=' + email.val();

		$.ajax({
			url : "ajaxLoader.php?pg=forgot",
			type : "POST",
			dataType: 'json',
			data : data,
			cache : false,

			success : function(html) {
				if (html == 1) {
					$('.forgot .inner').load('ajaxLoader.php?pg=forgot_success');
					
					$('.forgot').delay(2000).fadeOut(1000, function() {
						$('.forgot').load('ajaxLoader.php?pg=forgot_form');
					});
					
				} else {
		            $.each(html, function(fieldname, msg){
						$('#forgot_email_span').html(msg);
						$('#forgot_email_label').hide();
		              });
				}
			}
		});

		return false;
	});
	
	
});

