/****************
	jQuery
****************/


// 1. マウスオーバー
$(function(){
	$('a img').hover(function(){
        $(this).attr('src', $(this).attr('src').replace('_off', '_on'));
		}, function(){
        	if (!$(this).hasClass('currentPage')) {
        	$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
        }
   });
});


// 2. 外部リンク
$(function(){
	$("a[href^='http://']").attr("target","_blank");
});


// 3. ページトップへスクロール
$(function(){
     $("#toTop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});


// 4. Div全体をクリックできるようにする
$(function(){
	$(".sampleBox").click(function(){
    	window.location=$(this).find("a").attr("href");
    	return false;
    });
});


// 5. 文字サイズ変更












