$(document).ready(setSideMenuHeight);
$(document).ready(setNewsHeight);

function setSideMenuHeight() {
	if ($("#mainContents").length == 0) return false;
	
	var targetHeight = $("#mainContents").height();
	$("#sideMenu dl").height(targetHeight);
}

function setNewsHeight() {
	if ($("#leftBox").length == 0) return false;
	
	var leftHeight = $("#leftBox").height();
	var rightHeight = $("#rightBox").height();
	var newsHeight = $(".newsBox").height();
	var distance = leftHeight - (rightHeight - newsHeight);
	$(".newsBox").css("height", distance);
}

//スルスルスクロールをセット
$(document).ready(setSurusuruScroll);
function setSurusuruScroll() {
	$('a[href^="#"]').click(
		function() {
			$(this).blur();
			var targetID = $(this).attr("href");
			var targetPosition = $(targetID).scrollTop() + $(targetID).offset().top;
			$('html,body').animate({ scrollTop: targetPosition }, 500);
			return false;
		});
}