function verify_fb_signin() {
		
		post = 'facebook=true';
		
		$.post($("#header_signin_fb_form").attr('action'), post, function(data) {
			
			if (data.status == true) {
				setTimeout(function() {
					$("#header_signin_sf").fadeOut("slow");
					$(".replace_first_name").html(data.info.first_name);
					$(".replace_last_name").html(data.info.last_name);
					$("#header_signin_success").show();
					$("#header_signin_response").fadeIn("slow");
					$("#header_quickbar_info_joinsignin").addClass("disable");
					$("#header_quickbar_info_user").removeClass("disable");
					loggedIn();
					setTimeout(function() {
						$("#header_signin").fadeOut(2000);
					}, 3500);
				}, 0);
			} else if (data.status == false) {
				setTimeout(function() {
					$("#header_signin_sf").fadeOut("slow");
					$("#header_signin_fail").show();
					$("#header_signin_response").fadeIn("slow");
				}, 0);
			}
			
		}, 'json');

	//$("#header_nav").fadeOut();
}

function verify_fb_join() {
				
		post = 'facebook=true';
		
		$.post($("#join_content_fb_form").attr('action'), post, function(data) {
			
			if (data.status == true) {
				setTimeout(function() {
					$(".replace_first_name").html(data.info.first_name);
					$(".replace_last_name").html(data.info.last_name);
					$("#join_content_fb").fadeOut("fast");
					$("#join_success_fb").show();
					$("#join_success_container").fadeIn("fast");
					parent.verify_fb_signin();
				}, 0);
			} else if (data.status == false) {
				/*
				setTimeout(function() {
					$("#header_signin_sf").fadeOut("slow");
					$("#header_signin_fail").show();
					$("#header_signin_response").fadeIn("slow");
				}, 500);*/
			}
			
		}, 'json');

	//$("#header_nav").fadeOut();
}