// メニューの季節をクリック際にリストの開閉を行う
function listClose(divObj)
{
	
	if ( divObj.style.display == "" )
	{
//		divObj.style.visibility = "hidden";
		divObj.style.display = "none";
	} else {
//		divObj.style.visibility = "";
		divObj.style.display = "";
	}
	
}

// メニューの季節にカーソルがあったらマウスのカーソルを変更する
function chgCursor(obj)
{
//	alert(obj.id);
	obj.style.cursor = "hand"
}

