var mMenuButs = new Array();

function InitMMenu()
{
	mMenuButs[0] = document.all.mbtn_0;
	mMenuButs[1] = document.all.mbtn_1;
	mMenuButs[2] = document.all.mbtn_2;
	mMenuButs[3] = document.all.mbtn_3;
	mMenuButs[4] = document.all.mbtn_4;
	mMenuButs[5] = document.all.mbtn_5;
	mMenuButs[6] = document.all.mbtn_6;
}


function onMenuOver(mnuId)
{
	if (mMenuButs[mnuId]!=null) mMenuButs[mnuId].className = "mnu_fm";
}

function onMenuOut(mnuId)
{
	if (mMenuButs[mnuId]!=null) mMenuButs[mnuId].className = "mnu_n";
}

function onMenuDown(mnuId)
{
	if (mMenuButs[mnuId]!=null) mMenuButs[mnuId].className = "mnu_fmd";
}

function onMenuUp(mnuId)
{
	if (mMenuButs[mnuId]!=null) mMenuButs[mnuId].className = "mnu_fm";
}


