$(function() {

	$("h1").css("display", "none");

	//Gnavロールオーバー
	$("#gNav li a").hover(
		function(){
					$(this).addClass("roll")
		},
		function(){
					$(this).removeClass("roll")
		}
	);
	
	//contentsAreaの角丸設定
	$(".contentsArea,.contentsArea1clm, .certificationInner").corner("round 3px").parent().css('padding', '1px').corner("round 5px");
	
	//Tableのtdを上揃えに
	$("th, td").attr("valign","top");
	
	//Tableのtd最下段のボーダー指定
	$("tr:last-child th, tr:last-child td").css("border-bottom","1px #00759c solid");
	
	//h1設定
	$(window).load(
		function(){
			$("h1").css({bottom:'45px',display:'block'});
			gadgetStart0 = true;
		}
	);
	
});
