var _MENU_STRID = '';

function MenuSelect(menu_strid)
{	
	if (_MENU_STRID != menu_strid)
	{
		MenuUnSelect()
		_MENU_STRID = menu_strid;
		document.getElementById('but_left_' + _MENU_STRID).className = 'but_left_' + _MENU_STRID;
		document.getElementById('but_center_' + _MENU_STRID).className = 'but_center_' + _MENU_STRID;
		document.getElementById('but_right_' + _MENU_STRID).className = 'but_right_' + _MENU_STRID;
	}
}

function MenuUnSelect()
{
	if (_MENU_STRID != '' & _SELECT_MENU_SRC != _MENU_STRID+'.html')
	{
		document.getElementById('but_left_' + _MENU_STRID).className = 'but_left';
		document.getElementById('but_center_' + _MENU_STRID).className = 'but_center';
		document.getElementById('but_right_' + _MENU_STRID).className = 'but_right';
		_MENU_STRID = '';
	}
}

