if (ns) {
  MENU_POS0[1]['block_top'] -= G_topMarginHeight + G_leftMenuTop;
  MENU_POS0[1]['block_left'] -= G_leftMenuLeft;
}
function wr_a_class(text, theClass, arrow) {
  return '<table cellspacing=0 cellpadding=0><tr><td width="120px" class="'  
    + theClass + '">' +
    text +
    '</td><td width="10px" class="' + theClass + 
    '" align="right"><img src="./Content/Images/' + arrow + '"></td></tr></table>';
}

function wr_a(text) {
  return [ wr_a_class(text, 'menuTextMOff', 'Arrow6.gif') , wr_a_class(text,
								       'menuTextMOver', 'Arrow3.gif') , wr_a_class(text,
														   'menuTextMDown', 'Arrow3.gif') ,];
}

function wr_class(text, theClass) {
  return '<table cellspacing=0 cellpadding=0><tr><td width="120px" class="' + 
    theClass + '">' +
    text +
    '</td><td width="10px" class="' + theClass + '" align="right"></td></tr></table>';
}
      
function wr(text) {
  return [ wr_class(text, 'menuTextMOff') , wr_class(text,
						     'menuTextMOver') , wr_class(text, 'menuTextMDown') ,];
}
var menuItems = [
		 [ wr_a('Products'), null, null,
		   [wr_a('Benchmarks'), 'index.php?request=BenchmarksMain', {'tt' : 'Click here to go to benchmarks main page'},
		    [wr('HD Tach'), 'index.php?request=HdTach', {'tt' : 'Hard Drive benchmarks'}],
		    [wr('CD/DVD Tach'), 'index.php?request=CdDvdTach', {'tt' : 'CD/DVD benchmarks'}],
		    ],
		   [wr('Free Stuff'), 'index.php?request=FreeApps'],
		   ],
		 [ wr('Company Info'), 'index.php?request=AboutUs', {'tt' : 'About Us'}],
		 [ wr_a('Downloads'), null, null,
		   [wr_a('Benchmarks'), null, null,
		    [wr('HD Tach - Free'), 'index.php?request=HdTach', {'tt' :
								     'Release for the public'}],
		    ],
		   [wr('Free Stuff'), 'index.php?request=FreeApps'],
		   ],
		 [wr('Forums'), 'index.php?request=Forums', {'tt' : 'User community: you can share with us and other users your comments about our products and services'}],
		 [wr_a('HELP'), null, null,
		  [wr('Support'), 'index.php?request=Support', {'tt' : 'General information about support for our products'}],
		  [wr('Tips and Links'), 'index.php?request=HelpTipsLinks', {'tt' : 'FAQs, references, etc.'}],
		  [wr('Contact Us'), 'index.php?request=ContactUs', {'tt' : 'How to contact us'}],
		  [wr('Mail List'), 'index.php?request=MailListMain', {'tt' : 'Learn about our mail list'}],
		  ],
                 [wr('Online Store'), 'index.php?request=Store', {'tt' : 'HD Tach licenses'}]
		 ];

