<!--
function changeFontSize(scale) {
	$('body').css('font-size',scale + '%');
	var text;
	switch(scale) {
		case 80:
			text = '<p id="moji">文字サイズ <a onClick="javascript:setFontsize(80);"><img src="img/header/moji_s_o.gif" width="12" height="12" alt="小"></a> <a onClick="javascript:setFontsize(100);"><img src="img/header/moji_m.gif" width="16" height="16" alt="中"></a> <a onClick="javascript:setFontsize(120);"><img src="img/header/moji_l.gif" width="20" height="20" alt="大"></a></p>';
			break;
		case 100:
			text = '<p id="moji">文字サイズ <a onClick="javascript:setFontsize(80);"><img src="img/header/moji_s.gif" width="12" height="12" alt="小"></a> <a onClick="javascript:setFontsize(100);"><img src="img/header/moji_m_o.gif" width="16" height="16" alt="中"></a> <a onClick="javascript:setFontsize(120);"><img src="img/header/moji_l.gif" width="20" height="20" alt="大"></a></p>';
			break;
		case 120:
			text = '<p id="moji">文字サイズ <a onClick="javascript:setFontsize(80);"><img src="img/header/moji_s.gif" width="12" height="12" alt="小"></a> <a onClick="javascript:setFontsize(100);"><img src="img/header/moji_m.gif" width="16" height="16" alt="中"></a> <a onClick="javascript:setFontsize(120);"><img src="img/header/moji_l_o.gif" width="20" height="20" alt="大"></a></p>';
			break;
	}
	document.getElementById("moji_out").innerHTML = text;
}
//クッキーに値があったらfontsize変更
function getFontsize() {	
	if($.cookie('fontsize') != null ) {
		changeFontSize(parseInt($.cookie('fontsize')));
	}
}
//
function accord() {
	$('#l_sub1').accordion({
		active    : '.active',
		selectedClass: 'active',
		header: "h5"
	});
	$('#l_sub2').accordion({ 
		active    : '.active',
		selectedClass: 'active',
		header: "h5"
	});	
	$('#l_sub3').accordion({ 
		active    : '.active',
		selectedClass: 'active',
		header: "h5"
	});
	$('#l_sub4').accordion({ 
		active    : '.active',
		selectedClass: 'active',
		header: "h5"
	});	
	$('#l_sub5').accordion({ 
		active    : '.active',
		selectedClass: 'active',
		header: "h5"
	});
	$('#l_sub6').accordion({ 
		active    : '.active',
		selectedClass: 'active',
		header: "h5"
	});		
	$('#l_navi').accordion({ 
		active    : '.active',
		alwaysOpen: true,
		selectedClass: 'active',
		header: "dt"
	});
}
function setFontsize(scale) {	
	$.cookie('fontsize',scale,{ expires: 3});//クッキー書き込み{保存days}
	location.reload();
}
-->
