
function openMenu( id )
{
	closeMenu( id );
	cheltenhamStyle_setDisplay( 'PanelHeaderMenuSub' + id, 1 );
}
function closeMenu( idException )
{
	var arrayMenu = new Array( 'Product', 'Works', 'House', 'Model' );
	for( i = 0 ; i < arrayMenu.length ; i++ )
	{
		if( arrayMenu[ i ] != idException )
		{
			cheltenhamStyle_setDisplay( 'PanelHeaderMenuSub' + arrayMenu[ i ], 0 );
		}
	}
}

function scrollPageTop()
{
//	cheltenhamWindow_scrollToTop();
	cheltenhamWindow_scrollToTopGradually( 30 );
}

function setDisplay( id, flagView )
{
	cheltenhamStyle_setDisplay( id, flagView );
}


