//Ajaxでデータ書き出しに使う、divのid属性があるかないかで判断させるため、ページの最下部にセット
//カテゴリ
if(document.getElementById('navicategory')){
	getRootCategory();
} 
<!-- For Mydo -->
//商品
if(document.getElementById('goods_category')){
	getGoodsCategory();
}
//顧客別お勧め商品
if(document.getElementById('eachmembergoods')){
	setEachMemberGoods(mbCode, 3, rank);	//3は1行あたりのレコード数
}
//スキンケアスタイリストからのお勧め
if(document.getElementById('nextbuyforecast')){
	setRecommendGoods(mbCode, 3, rank);	//3は1行あたりのレコード数
}
//会員レベル別キャンペーン表示
if(document.getElementById('membertypecamp')){
	setCampaign(rank);
}

<!-- For Mydo End -->
//
if(document.getElementById('pankuzu')){
	getSiteIndex();
} 
//トピックス
if(document.getElementById('topic')){
	PrintTopicsFilter(rank);
	//PrintTopics();
} 

if(document.getElementById('childcategorylist')){
	PrintCategoryList(categoryID);	//categoryIDは先に定義済み
} 
<!-- For Nishiyama -->
//珈琲チャート
if(document.getElementById('goodsimg')){
	setGoodsDataChart(gdCode);
}
//プルダウンメニュー
if(document.getElementById('optionSel')){
	setOptionMenu(gdCode);
}
<!-- For Nishiyama -->