pageAll = {"choice":[{"Basis":{"title":"原材料で見極める","path_file":"material","pickup_flag":"0","id":"13"},"Category":{"cat_path_file":"choice"}},{"Basis":{"title":"原産地をチェック","path_file":"growingarea","pickup_flag":"0","id":"14"},"Category":{"cat_path_file":"choice"}},{"Basis":{"title":"含有量と価格のバランス","path_file":"quantity","pickup_flag":"0","id":"15"},"Category":{"cat_path_file":"choice"}},{"Basis":{"title":"ローヤルゼリー製品比較ランキング","path_file":"ranking","pickup_flag":"1","id":"16"},"Category":{"cat_path_file":"choice"}}],"effect":[{"Basis":{"title":"更年期障害の症状軽減","path_file":"menopause","pickup_flag":"0","id":"7"},"Category":{"cat_path_file":"effect"}},{"Basis":{"title":"ローヤルゼリーでアンチエイジング","path_file":"age","pickup_flag":"0","id":"8"},"Category":{"cat_path_file":"effect"}},{"Basis":{"title":"美肌効果","path_file":"beauty","pickup_flag":"0","id":"9"},"Category":{"cat_path_file":"effect"}},{"Basis":{"title":"生活習慣病予防","path_file":"lifstyle","pickup_flag":"0","id":"10"},"Category":{"cat_path_file":"effect"}},{"Basis":{"title":"ガン予防にも効果あり","path_file":"canser","pickup_flag":"0","id":"12"},"Category":{"cat_path_file":"effect"}}],"component":[{"Basis":{"title":"デセン酸","path_file":"desen","pickup_flag":"0","id":"3"},"Category":{"cat_path_file":"component"}},{"Basis":{"title":"アミノ酸","path_file":"amino","pickup_flag":"0","id":"4"},"Category":{"cat_path_file":"component"}},{"Basis":{"title":"ビタミンＢ群","path_file":"vitamin","pickup_flag":"0","id":"5"},"Category":{"cat_path_file":"component"}},{"Basis":{"title":"ミネラル類","path_file":"mineral","pickup_flag":"0","id":"6"},"Category":{"cat_path_file":"component"}}],"knowledge":[{"Basis":{"title":"ローヤルゼリーって何？","path_file":"what","pickup_flag":"0","id":"1"},"Category":{"cat_path_file":"knowledge"}},{"Basis":{"title":"ローヤルゼリーの歴史","path_file":"histrory","pickup_flag":"0","id":"2"},"Category":{"cat_path_file":"knowledge"}}]};
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>');
		});
	});
});