pageAll = {"choice":[{"Basis":{"title":"サプリメントの見分け方","path_file":"distinguishe","pickup_flag":"0","id":"1"},"Category":{"cat_path_file":"choice"}},{"Basis":{"title":"天然成分と合成成分","path_file":"element","pickup_flag":"0","id":"2"},"Category":{"cat_path_file":"choice"}}],"explanation":[{"Basis":{"title":"生活習慣病対策","path_file":"custom","pickup_flag":"0","id":"3"},"Category":{"cat_path_file":"explanation"}},{"Basis":{"title":"便秘解消したいなら","path_file":"constipation","pickup_flag":"0","id":"4"},"Category":{"cat_path_file":"explanation"}},{"Basis":{"title":"免疫力を高めたい","path_file":"immunity","pickup_flag":"0","id":"5"},"Category":{"cat_path_file":"explanation"}},{"Basis":{"title":"人気サプリメント比較ランキング","path_file":"ranking","pickup_flag":"1","id":"6"},"Category":{"cat_path_file":"explanation"}}],"associat":[{"Basis":{"title":"酵母","path_file":"yeast","pickup_flag":"0","id":"7"},"Category":{"cat_path_file":"associat"}},{"Basis":{"title":"ローヤルゼリー","path_file":"honey","pickup_flag":"0","id":"8"},"Category":{"cat_path_file":"associat"}},{"Basis":{"title":"クロレラ","path_file":"chlorella","pickup_flag":"0","id":"9"},"Category":{"cat_path_file":"associat"}},{"Basis":{"title":"高麗人参","path_file":"carrot","pickup_flag":"0","id":"10"},"Category":{"cat_path_file":"associat"}},{"Basis":{"title":"プロポリス","path_file":"propolis","pickup_flag":"0","id":"11"},"Category":{"cat_path_file":"associat"}}],"notes":[{"Basis":{"title":"サンプルを取り寄せる","path_file":"sample","pickup_flag":"0","id":"12"},"Category":{"cat_path_file":"notes"}},{"Basis":{"title":"賞味期限を意識する","path_file":"limit","pickup_flag":"0","id":"13"},"Category":{"cat_path_file":"notes"}},{"Basis":{"title":"疑問点は必ず解消","path_file":"doubt","pickup_flag":"0","id":"14"},"Category":{"cat_path_file":"notes"}},{"Basis":{"title":"届いたその日に必ずチェック！!","path_file":"check","pickup_flag":"0","id":"15"},"Category":{"cat_path_file":"notes"}}]};
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>');
		});
	});
});