$(function() {
	factor=screen.height/2+50;
	
	//$(".popup").css("top", factor+"px");
	
	$(".popup").css("width", 32+"px");
	$(".point").css("background", "url('image/point_green.gif') no-repeat 0 0");
	if($(".point").hasClass("night_point")) {
		$(".point").css("background", "url('image/point.gif') no-repeat 0 0");
	}
	
	$(".popup_click").click(function() {
		if($(".popup").css("width")=="32px") {
			$(".popup").css("width", 229+"px");
			$(".point").css("background", "transparent");
		} else {
			$(".popup").css("width", 32+"px");
			$(".point").css("background", "url('image/point_green.gif') no-repeat 0 0");
			if($(".point").hasClass("night_point")) {
				$(".point").css("background", "url('image/point.gif') no-repeat 0 0");
			}
		}
	});
	
	$(".popup_txta, .popup_inpt").click(function() {
		$(this).val('');
	});
	
	$(".popup_close").click(function() {
		$.cookie("popup_close_flag", 1, {
			path: "/",
			//expires: 1/1440
			expires: 1
		});
		$(".popup").remove();
	});
	
});

