// JavaScript 

$(function(){
	
	//topページ　インフォ部分のライン調整
	$("#topleft p:first").css("border-top","none");  
		
		
	//ページトップ　
	$(".pptt").click(function(){
		$('html,body').animate({ scrollTop: $("a#aaa1").offset().top }, 'normal','swing');
		return false;
	});
});
