$(function(){

	// 携帯用メールアドレスのドメイン選択リストを設定する。
	if ($('select').is('#email_domain')) {
		epinard_form.replaceSelectToPopupList({selectId:'email_domain', dataList:epinard_form.domainList});
	}

	// 携帯用メールアドレスのドメイン選択リストを設定する。
	if ($('select').is('#email_new_domain')) {
		epinard_form.replaceSelectToPopupList({selectId:'email_new_domain', dataList:epinard_form.domainList});
	}

	// 住所(都道府県)の選択リストを設定する。
	if ($('input').is('#pref')) {
		$('#pref').popupList({list:epinard_form.prefList, cascade:false, colwidth:'5em'});
	}

});

