
//************************************************************//
// 項目毎にページを表示
// 引数：
//	なし
// 戻り値:
//  なし
// 06.12.03 武本
//************************************************************//
function GoNextPages(index){
	var strURL
	switch (index) {
		case 1:
			strURL="Home.html";
			window.location=strURL;
			break;
		case 2:
			strURL="Contents-01news.html";
			window.location=strURL;
			break;
		case 3:
			strURL="Contents-02collection.html";
			window.location=strURL;
			break;
		case 4:
			strURL="Contents-03artworks.html";
			window.location=strURL;
			break;
		case 5:
			strURL="Contents-04identity.html";
			window.location=strURL;
			break;
		case 6:
			strURL="Contents-05shop.html";
			window.location=strURL;
			break;
		case 7:
			window.open('Contact.html', '_blank', 'width=400,height=400');
	}

	//newWin=window.open("","","width=950,height=600,resizable=1,menubar=1,location=1,toolbar=1");
}
//************************************************************//
//MouseOver//
//************************************************************//
function MouseOver(Menu){
	//画面切り替え
	document.images[Menu].style.cursor='hand';
	File="audio/"+Menu+".WAV";
	soundPlay(File);
}
//************************************************************//
//MouseOut//
//************************************************************//
function MouseOut(Menu){
	document.images[Menu].style.cursor='default';
	File="audio/"+Menu+".WAV";
	soundPlay(File);
}
function soundPlay(sndName)
{
document.getElementById('sd01').src = sndName;
}
