// скроем все дивы
function hide_divs_menu()
{
	var rows = document.getElementsByTagName('div');
    for ( var i = 0; i < rows.length; i++ ) {
        // ... with the class 'mesto' ...
		//alert(rows[i].getAttribute('id'));
		if  (rows[i].getAttribute('id')==null) { continue; }
		if ( 'menu_id_' != rows[i].getAttribute('id').substr(0,8) ) {
            continue;
        }
		rows[i].className='common_hide';
    }
}
// покажем нужное меню
function show_menu(menu)
{
	//hide_divs_menu(); // скорем все меню
	if (menu=='') return false;
	menu_id='menu_id_'+menu;
	if (document.getElementById(menu_id)!=null)	
	{
		if (document.getElementById(menu_id).className=='common_show') 
		{
			document.getElementById(menu_id).className='common_hide'; 
		}
		else
		{
			document.getElementById(menu_id).className='common_show'; 
		}
	}
}
