/**
 * ==========================================================================
 *
 * [javascript for 医療法人生寿会]
 * 
 * fontsize変更
 * 
 * ==========================================================================
 */
jQuery(function($)　{
    var record = $.cookie('fontSize');
	
    var targetArr = new Array(
    	'div#main', 
    	'div#mainFull',
    	'div#globalNaviBottom',
    	'div#footerContent'
    );
    
    var target = $(targetArr.join(', '));

    if (record) {
    	target.addClass(record);
    	$('#' + record).parent().addClass('active');
    } else {
    	target.addClass('fontNormal');
    	$('#fontNormal').parent().addClass('active');
    }

    $('#fontSizeChanger dd a').click(function() {
    	
    	var setFontSize = this.id;

    	$.cookie('fontSize', setFontSize, { path: '/' });

    	target.removeClass().addClass(setFontSize);
    	$('#fontSizeChanger dd').removeClass('active');
    	$(this).parent().addClass('active');
    });
});
