pageAll = {"supplement":[{"Basis":{"title":"クロム・ミネラル","path_file":"chrome","pickup_flag":"0","id":"12"},"Category":{"cat_path_file":"supplement"}},{"Basis":{"title":"難消化性デキストリン","path_file":"dextrin","pickup_flag":"0","id":"13"},"Category":{"cat_path_file":"supplement"}},{"Basis":{"title":"バナバ・桑の葉・ギムネマ","path_file":"banaba","pickup_flag":"0","id":"14"},"Category":{"cat_path_file":"supplement"}},{"Basis":{"title":"酵母","path_file":"yeast","pickup_flag":"0","id":"15"},"Category":{"cat_path_file":"supplement"}},{"Basis":{"title":"サプリメント体験比較","path_file":"experience","pickup_flag":"1","id":"16"},"Category":{"cat_path_file":"supplement"}}],"methods":[{"Basis":{"title":"まずは治療の基礎知識","path_file":"knowledge","pickup_flag":"0","id":"6"},"Category":{"cat_path_file":"methods"}},{"Basis":{"title":"（1）食事療法からはじめよう","path_file":"dietetic","pickup_flag":"0","id":"7"},"Category":{"cat_path_file":"methods"}},{"Basis":{"title":"（2）運動療法も忘れずに","path_file":"therapeutic","pickup_flag":"0","id":"8"},"Category":{"cat_path_file":"methods"}},{"Basis":{"title":"（3）生活習慣を見直そう","path_file":"lifestyle","pickup_flag":"0","id":"9"},"Category":{"cat_path_file":"methods"}},{"Basis":{"title":"（4）インスリン療法の真実","path_file":"Insulin","pickup_flag":"0","id":"10"},"Category":{"cat_path_file":"methods"}},{"Basis":{"title":"（5）サプリメントで糖尿病改善！？","path_file":"Improvement","pickup_flag":"0","id":"11"},"Category":{"cat_path_file":"methods"}}],"belittles":[{"Basis":{"title":"糖尿病とは","path_file":"diabetic","pickup_flag":"0","id":"1"},"Category":{"cat_path_file":"belittles"}},{"Basis":{"title":"糖尿病の種類","path_file":"kind","pickup_flag":"0","id":"2"},"Category":{"cat_path_file":"belittles"}},{"Basis":{"title":"高い血糖値にご用心","path_file":"blood","pickup_flag":"0","id":"3"},"Category":{"cat_path_file":"belittles"}},{"Basis":{"title":"合併症による症状","path_file":"symptom","pickup_flag":"0","id":"4"},"Category":{"cat_path_file":"belittles"}},{"Basis":{"title":"糖尿病が進行すると・・・","path_file":"progress","pickup_flag":"0","id":"5"},"Category":{"cat_path_file":"belittles"}}]};
google.setOnLoadCallback(function(){
	baseuri = '/';
	jQuery.each(pageAll, function(cname, cdata)
	{
		jQuery.each(cdata, function(pid, pdata)
		{
			$cdiv = jQuery('#SideMenuListHeadLevel1_'+cname);
			$ul = $cdiv.next();
			if($ul.is('ul')===false){
				$cdiv.after('<ul>')
				$ul = $cdiv.next().addClass('SideMenuListLevel1');
			}
			listclass = (pdata.Basis.pickup_flag==1) ? ' class="SideMenuListPickupLevel1"' : '' ;
			linkurl = baseuri+cname+'/'+pdata.Basis.path_file+'.html';
			$ul.append('<li'+listclass+'><a href="'+linkurl+'">'+pdata.Basis.title+'</a></li>');
		});
	});
});