/* リストにクラス追加 */
$(function(){

	$('ul').each(function(){
		$(this).find('li:last').addClass('last_list');
	});

	/* ページTOPスクロール */
		$("#page_top a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})

});

