// JavaScript Document

$(function(){

/*--------------------------------------------------------*/
//ページの先頭へ戻るリンクにヘッダーIDを設定
$('.page-top > a').attr('href', '#header');

/*--------------------------------------------------------*/
//フォントサイズ変更ボタン
$('#font-changer a').click(function(){
//classリセット
$('#font-changer a').removeAttr('class');
$(this).addClass('active');
});

//アクティブボタン設定
if(title === 'font-l'){
$('#font-changer>dd.zoom>a').addClass('active');
}else if(title === 'font-s'){
$('#font-changer>dd.regular>a').addClass('active');
}else{
$('#font-changer>dd.regular>a').addClass('active');
}

    /*--------------------------------------------------------*/
//IE透過PNG対応
    $(".png").fixPng();

});

