/**
 * =====================================================================
 *
 * [javascript for kenporen]
 * 健康ウォーク用js
 * 
 * =====================================================================
 */
$(function() {
	// 非表示voxの初期化
	$('.hideContent').hide();
});

function hideContentToggle(voxID) {
	$('#' + voxID).toggle();
	
	var dispStatus = $('#' + voxID).is(':visible');
	
	var toggleButton = (voxID + 'Link');
	
	if (dispStatus == true) {
		$('#' + toggleButton).text('折り畳む');
	} else {
		$('#' + toggleButton).text('続きはこちら');
	}
}
