// JavaScript Documents

/*==================================================
jQuery
==================================================*/
$(function(){
	
	// viewAreaの画像切り替え
	$("#viewPic").innerfade({
		animationtype : "fade",
		speed : 1200,
		timeout : 5000,
		containerheight : 440
	});
	
	//.pagetopをクリックするとページの先頭に戻る
    $('.pagetop a').click(function () {
        $(this).blur();
        $('html,body').animate({ scrollTop: 0 }, 'normal');
        return false;
    });
	
	
});
