
var main = new menuBar("nav");

// Add main items to bar
var home = new menuItem('HOME','index.html');
main.addItem(home);

var products = new menuItem('SOFTWARE PRODUCTS','software-products.html');
main.addItem(products);

var demo = new menuItem('DEMO &amp; UPDATES','downloads.html');
main.addItem(demo);

var equipment = new menuItem('EQUIPMENT','equipment.html');
main.addItem(equipment);

var tickets = new menuItem('TICKETS','tickets.html');
main.addItem(tickets);

var customers = new menuItem('CUSTOMERS','customers.html');
main.addItem(customers);

var support = new menuItem('SUPPORT','support.html');
main.addItem(support);

var about = new menuItem('ABOUT US','about_us.html');
main.addItem(about);

var contact = new menuItem('CONTACT','contact.html');
main.addItem(contact);


// Add sub-menu items for 'products'.
var wintix = new menuItem('Wintix','software-products-wintix.html');
products.addChild(wintix);

var webtix = new menuItem('Webtix','software-products-webtix.html');
products.addChild(webtix);

products.addChild(new menuItem('Wintix & Webtix Brochure','brochure.html'));

products.addChild(new menuItem('Remote Ticketing Transactions','remote-ticketing-transactions.html'));
products.addChild(new menuItem('ScanTix','software-products-ScanTix.html'));


//software-products-ScanTix.html

// Add sub-menu items for 'wintix'.
wintix.addChild(new menuItem('Wintix Screenshots','software-products-wintix-screenshots.html'));
wintix.addChild(new menuItem('Wintix Updates','software-products-wintix-updates.html'));
wintix.addChild(new menuItem('Wintix Demo Package','software-products-wintix-demo-package.html'));


// Add sub-menu items for 'webtix'.
webtix.addChild(new menuItem('Webtix Ticketing Demo','software-products-webtix-ticketing-demo.html'));

// Add sub-menu items for 'equipment'.
equipment.addChild(new menuItem('Computers &amp; Networks','equipment-computers-and-networks.html'));
equipment.addChild(new menuItem('Printers','equipment-printers.html'));
equipment.addChild(new menuItem('Database Management','equipment-database-management.html'));
equipment.addChild(new menuItem('Backing Up','equipment-backing-up.html'));
equipment.addChild(new menuItem('Linux','equipment-linux.html'));
equipment.addChild(new menuItem('Macintosh Information','equipment-macintosh-information.html'));


// Add sub-menu items for 'tickets'.
tickets.addChild(new menuItem('Thermal Colors','tickets-thermal-colors.html'));
tickets.addChild(new menuItem('Dot Matrix Colors','ticket-colors-dot-matrix.html'));
tickets.addChild(new menuItem('Thermal Tickets Order Form','tickets-order-form.html'));
//tickets.addChild(new menuItem('Thermal Tickets Order Form','https://centerstageticketing.com/cart'));



// Add sub-menu items for 'customers'.
customers.addChild(new menuItem('Reference List','customers-reference-list.html'));
customers.addChild(new menuItem('Record Breakers','customers-record-breakers.html'));

// Add sub-menu items for 'support'.
support.addChild(new menuItem('Frequently asked questions','FAQs.html'));
support.addChild(new menuItem('Support','support.html'));
support.addChild(new menuItem('Forum - read others postings','http://centerstage.com/cssforum/index.php'));
support.addChild(new menuItem('Help desk blog','http://centerstage.com/help/'));
support.addChild(new menuItem('Wintix manual','http://centerstage.com/centerstage/WintixManual.htm'));

// Add sub-menu items for 'about'.
about.addChild(new menuItem('Philosophy','about_us_philosophy.html'));
//about.addChild(new menuItem('FAQs','about_us_faq.html'));
about.addChild(new menuItem('Special Projects','about_us_special_projects.html'));


// Render menuBar.
main.display();

