function alertSize() {
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement &&
      ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
  //  window.alert( 'Width = ' + myWidth );
 // window.alert( 'Height = ' + myHeight );
    return(myWidth);


}


var MENU_POS  = [
		
{
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 87,
	// Horizontal Offset between adjacent levels in pixels
	// 'block_left' : ((screen.width)/2)-240 ,
	'block_left' : (alertSize()/2) - 300 ,
	
	'top': 0,
	'left': 120,
	// Item's width in pixels
	'width'      : alertSize()/(1.5*8),
	// Item's height in pixels
	'height'     : 21,
	// Time Delay in milliseconds before subling block expands  
	// after mouse pointer overs an item
	'expd_delay' : 100,
	'hide_delay' : 100,
	'css' : {
		'inner' : ['m0l0mouti', 'm0l0moveri', 'm0l0mdowni'],
		'outer' : ['m0l0mouto', 'm0l0movero', 'm0l0mdowno']
	}
},
{
	// Vertical Offset between adjacent levels in pixels
	'block_top'  : 15,
	// Horizontal Offset between adjacent levels in pixels
	'block_left' : 10,
	
	'top': 20,
	'left': 0,
	'css' : {
		'inner' : ['m0l1mouti', 'm0l1moveri', 'm0l1mdowni'],
		'outer' : ['m0l1movero', 'm0l1movero', 'm0l1mdowno']
	}
}	
];
	