/**
 * ==========================================================================
 *
 * [javascript for 瀧冨工業]
 * 
 * fontsize変更
 * 
 * ==========================================================================
 */
jQuery(function($) {
    var record = $.cookie('fontSize');
	
    var targetArr = new Array(
    	'#content'
    );
    
    var target = $(targetArr.join(', '));

    if (record) {
    	target.addClass(record);
    	$('#' + record).parent().addClass('active');
    } else {
    	target.addClass('fontNormal');
    	$('#fontNormal').parent().addClass('active');
    }

    $('#textsize dd a').click(function() {
    	
    	var setFontSize = this.id;

    	$.cookie('fontSize', setFontSize, { path: '/' });

    	target.removeClass('fontNormal fontSmall fontPlus').addClass(setFontSize);
    	$('#textsize dd').removeClass('active');
    	$(this).parent().addClass('active');
    });
});
