colM='#A2CEFF';
col='#E0F0FE';
colOver = '#FFAF28'; //lighter orange
//colOver = '#FFA818'; //actal orange


function addItem(label, url, myAlign) {	
  return menuItem(label, null, null, colOver, col, url, myAlign);
}
	

//add menu bar items
startMenuBar(null, 3);
menuLabel('Menu', 1, 54, colOver, col, 'index.html', 'left');
endMenuBar(3);	


//add menu items
//bC= null; //'#ddddff'; //null;
startMenu(1, null);
addItem('Home', '\index.html');
addItem('Downloads', 'download.html');
addItem('Buy VAT-Books', 'vbOrder.html');
addItem('Take the Tour', 'vbTour.html');
addItem('About VAT-Books', 'vbAbout.html', 'right');
addItem('Features and Benefits', 'vbFeatures.html');
addItem('Contact Info', 'contact.html');
endMenu();
