var menu_array = new Array();
var menu_max = 6;
var menu_min = 1;
var menu_act = menu_min;
var menu_item_name = 'box';

function fixMenuContent($id)
{
	viewMenuContent($id);
	setMenuContent($id);
}

function setMenuContent($id)
{
	if( $id != menu_act ){
		menu_act = $id;
		showMenuContent($id);
	}
	return true;
}

function resumeMenuContent ($id)
{
	if( $id != menu_act ){
		hideAllMenuContents();
		showMenuContent(menu_act);
	}
}

function viewMenuContent($id)
{
	if( $id != menu_act ){
		hideAllMenuContents();
		showMenuContent($id);
	}
}

function hideAllMenuContents () { for(var i=menu_min; i<=menu_max; i++ ){ hideMenuContent(i); } }
function showMenuContent ( $id ) { grapElementById( getMenuID($id) ).style.display='block'; } 
function hideMenuContent ( $id ) { grapElementById( getMenuID($id) ).style.display='none'; } 
function getMenuID ($id){ return menu_item_name + ($id<10?'0':'') + $id; }
function grapElementById ( $id ){ return document.getElementById( $id ); }