//【mainカラム】お知らせモジュール
$(function(){
	$("#myNotice .infoY").click(
		function(){
			$("#myNotice").removeClass("tabOff");
			$("#myNews").addClass("tabOff");
			$("#myNotice dt a").replaceWith("<em>" + $(this).text() + "</em>");
			$("#myNews dt em").replaceWith("<a href=\"#\">" + $("#myNews dt").text() + "</a>");
			return false;
		}
	);
});

$(function(){
	$("#myNews .infoY").click(
		function(){
			$("#myNews").removeClass("tabOff");
			$("#myNotice").addClass("tabOff");
			$("#myNews dt a").replaceWith("<em>" + $(this).text() + "</em>");
			$("#myNotice dt em").replaceWith("<a href=\"#\">" + $("#myNotice dt").text() + "</a>");
			return false;
		}
	);
});




//【sideカラム】成績ポップアップ
$(function(){
	$(".at-hd-stat-graph").hover(
		function(){
			$(this).parent().find(".atHeadPopup").fadeIn(150);
			},
		function(){
			$(this).parent().find(".atHeadPopup").fadeOut(150);
			}
	);
});


//【知恵コレ】チェックボックス
$(function(){
	$(".allChk").click(
		function(){
			$(".lChk input").attr("checked", $(this).attr("checked"));
			$(".allChk").attr("checked", $(this).attr("checked"));
		}
	);
});


