$(document).ready(function() {
		$("#register_to_vote").validate();
		$("#forgot_pass").colorbox({
			iframe:true,
			height:220,
			intialHeight:100,
			width:600,
			initialWidth:100
		});
		$("#email_new").blur(function() {
			$.post("a/check_email", { email: $("#email_new").val() }, function(r) {
				$("#email_check").val(r);
				//alert(r);
			});
		});
		$("#submit_register").click(function() {
			//$("#tool_wrapper").fadeOut(function() {
				//$("#loading").show();
				
				if ($("#email_check").val()==0) {
					$.fn.colorbox({
						href:"a/email_in_use",
						open:true,
						height:140,
						intialHeight:30,
						width:500,
						initialWidth:100
					});
					return false;
				}
		});
});

