/*$(function(){
     $("#toTop a").click(function(){
     $('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
     return false;
     })
});*/
/***外部リンクに_blank指定***/
$(document).ready( function () {
	$("a[href^=http]").not("[href*="+location.hostname+"]").attr("target","_blank").addClass("extlink");
	//img要素を子に持つa要素のクラスは削除
	$("img").closest("a").removeClass("extlink");
});
/***外部リンクに_blank指定***/
$(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'));
        }
   });
});
/***高さ調整***/
$(function() {
    $('.cont,.sideBox').autoHeight();
});


