$(function(){
	//write space in empty td @table#sunpohyo
	$("#sunpohyo td:empty").text("　");
	var fuzokuBox = $("#fuzoku div.box");
	fuzokuBox.filter(":even").css("marginRight","30px");
	fuzokuBox.filter(":odd").css("marginRight","0px");

	//pdf download by open new window
	$("#main a[href$='.pdf']").click(function(){
		window.open($(this).attr("href"));
		return false;
	});

	//animated scroll to top of page
	$("#toTop a").click(function(){
		$("html,body") .animate({
			scrollTop:"0px"
		});
		return false;
	});
});
