var MENU_POS=[
// Level 0 block configuration
{
	// Item's height in pixels
	'height'     : 10,
	// Item's width in pixels
	'width'      : 50,
	// if Block Orientation is vertical
	'vertical'   : false,
	// Time Delay in milliseconds before subling block expands
	// after mouse pointer overs an item
	'expd_delay' : 300,

	'table'      : [0, 0, 0],

	// Style class names for the level
	'css' : {
		// Block outing table class
		'table' : 'm0table0',
		// Item inner tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'inner' : ['m0mouti', 'm0moveri'],
		// Item outer tag style class for all item states or
		// classes for [<default state>, <hovered state>, <clicked state>]
		'outer' : 'm0outer'
	}
},
// Level 1 block configuration
{
	'width'      : 50,
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 18,
	// Horizontal Offset between adjacent levels in pixels
	'block_left' : 0,
	// block behaviour if single frame:
	// 1 - shift to the edge, 2 - flip relatively to left upper corner
	'wise_pos'   : 1,
	'vertical'   : true,
	// Time Delay in milliseconds before menu collapses after mouse
	// pointer leafs all items
	'hide_delay' : 300,
	'css' : {
		'table' : 'm0table1',
		'outer' : 'm0outer2',
		'inner' : ['m1mouti', 'm1moveri']
	}
},
// Level 2 block configuration
{
	'width'      : 50,
	'block_top'  : 20,
	'block_left'  : 50,
	'wise_pos'   : 1,
	'vertical'   : true,
	// if negative, forces the block to expand leftward
	'left' : 1,

	'css' : {
		'table' : 'm0table1',
		'outer' : 'm0outer2',
		'inner' : ['m1mouti', 'm1moveri']
	}
},
// Level 3 block configuration
{
	'width' : 50
}
//Subling level configurations are inherited from level 3
]

function rs()
{
   var pximages = document.body.getElementsByTagName( 'img' );
   for( var i = 0; i < pximages.length; i++ )
   {
      if( pximages[i].src.indexOf( "/js/pixel.gif" ) != -1 )
      {
         var obj = pximages[i].parentNode;
         while( obj && obj.nodeName != 'TD' )
            obj = obj.parentNode
         if( obj )
         {
            if( obj.clientWidth != 0 )
            {
               pximages[i].width = obj.clientWidth;
               pximages[i].height = obj.clientHeight;
            }
         }
      }

   }
}
