$(document).ready(function() {

	//タブのＯＮ・ＯＦＦ
	var AttendChange = function(tab) {
		$(tab).bind("click", function() {
			if($("#toto").val() == 0){
				$(".font_sh1").html($("#time2").val());
				$(".font_sh2").html("明日の出勤");
				$(".font_sh3").html("<a class='link1'>本日の出勤</a>");
				$(".font_all").html("<a class='link1'>本日の出勤情報を見る</a>");
				$("#toto").val("1");
				$("#sh_box").load("attd.php?at=1");
			}else{
				$(".font_sh1").html($("#time1").val());
				$(".font_sh2").html("本日の出勤");
				$(".font_sh3").html("<a class='link1'>明日の出勤</a>");
				$(".font_all").html("<a class='link1'>明日の出勤情報を見る</a>");
				$("#toto").val("0");
				$("#sh_box").load("attd.php?at=0");
			}
								   
		});
			
	};
	AttendChange(".font_sh3");
	AttendChange(".font_all");

	$(".font_sh3").css("cursor","pointer");
	$(".font_all").css("cursor","pointer");

});

function Jumping(url){
	document.location.href = url;
}

function AttendLoad(toto){
	var timer = new Date/1e3|0;

	if(toto == 0){
		$(".font_sh1").html($("#time1").val());
		$(".font_sh2").html("本日の出勤");
		$(".font_sh3").html("<a class='link1'>明日の出勤</a>");
		$(".font_all").html("<a class='link1'>明日の出勤情報を見る</a>");
		$("#toto").val("0");
		$("#sh_box").load("attd.php?at=0&" + timer);
	}else{
		$(".font_sh1").html($("#time2").val());
		$(".font_sh2").html("明日の出勤");
		$(".font_sh3").html("<a class='link1'>本日の出勤</a>");
		$(".font_all").html("<a class='link1'>本日の出勤情報を見る</a>");
		$("#toto").val("1");
		$("#sh_box").load("attd.php?at=1&" + timer);
	}

}
