// メニュー＞ショップ一覧
	//	Aid	表示・非表示する場所
	//	Cid	変換場所
function Display(Aid,Cid){
	if(document.getElementById(Aid).style.display == 'none'){
		document.getElementById(Aid).style.display = '';
		document.getElementById(Cid).setAttribute("src","../images/minus.gif");	
	}else{
		document.getElementById(Aid).style.display = 'none';
		document.getElementById(Cid).setAttribute("src","../images/plus.gif");	
	}
}
