//ページスクローラー
$(function(){
$("a.gotop").click(function(){
$('html,body').animate({
scrollTop:$($(this).attr("href")).offset().top
},'slow','swing');
return false;
})
})

//ポップアップ設定
$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto({theme:'light_rounded'});
});
