jQuery(document).ready(
	function(){
		jQuery(".forgot_pass_link").click(function(){
			jQuery("#mailMsg").html('').hide();
			jQuery("#mailForm").show();
			jQuery.blockUI({message:jQuery("#domMessage"),css:{width:"40%"}});
		});
		jQuery("#closeUI").click(function(){
			jQuery.unblockUI();}
		);
		jQuery("#mailSendForm").submit(function(e){
			var $this=this;
			var divs=jQuery($this).parent().parent().find('div');
			var emailId=jQuery($this).find("input").eq(0).val();
			if(emailId=="")return;
			divs.eq(1).hide();
			divs.eq(0).html('<h3>Please Wait...</h3>').show();
			jQuery.get(WPURL+"/index.php",{"event":"send_mail","email":emailId},
				function(data){
					divs.eq(0).html("<h3>"+data.msg+"</h3>");
					setTimeout("jQuery.unblockUI()",1000);
				},"json");
			e.preventDefault();
		});
	}
);