//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

menu = new Menu();
menu.addItem(null,"Home","","../../default.html",null);
menu.addItem("aboutid","About Us","",null,null);
menu.addItem("productid","Products","",null,null);
menu.addItem("showroomid","Showroom","",null,null);
menu.addItem("enquiryid","Enquiries","",null,null);
menu.addItem("supportid","Support","",null,null);
menu.addItem("faqid","FAQ","",null,null);
menu.addItem("indexid","Index","","../../webindex.html",null);

menu.addSubItem("aboutid","History","","../../about/default.html","");
menu.addSubItem("aboutid","Quality Policy","","../../about/quality.html","");
menu.addSubItem("aboutid","Mosaicos Tile Gallery","","../../about/tile.html","");
menu.addSubItem("aboutid","Links & Affiliates","","../../about/links.html","");
menu.addSubItem("aboutid","Contact","","../../about/directory.html","");
menu.addSubItem("aboutid","&nbsp","","","");

menu.addSubItem("productid","Product Range","","../../product/default.html","");
//menu.addSubItem("productid","&nbsp","","","");
menu.addSubItem("productid","Wall Blocks","","../../product/wall/default.html","");
menu.addSubItem("productid","Decorative & Ventilation Blocks","","../../product/decor/default.html","");
menu.addSubItem("productid","Floor Tiles","","../../product/floor/default.html","");
menu.addSubItem("productid","Roof Tiles","","../../product/roof/default.html","");
menu.addSubItem("productid","&nbsp","","","");

//menu.addSubItem("showroomid","Project Portfolio","","../../showroom/default.html","");
//menu.addSubItem("showroomid","&nbsp","","","");
menu.addSubItem("showroomid","Commercial","","../../showroom/commercial/default.html","");
menu.addSubItem("showroomid","Residential","","../../showroom/residential/default.html","");
menu.addSubItem("showroomid","Roofing","","../../showroom/roofing/default.html","");
menu.addSubItem("showroomid","&nbsp","","","");

menu.addSubItem("enquiryid","Contact","","../../enquiry/default.html","");
//menu.addSubItem("enquiryid","Foreign","","../../enquiry/foreign.html","");
menu.addSubItem("enquiryid","&nbsp","","","");

//menu.addSubItem("supportid","Installation Guidelines","","../../support/default.html","");
//menu.addSubItem("supportid","&nbsp","","","");
menu.addSubItem("supportid","Installation Guides","","../../support/guide/default.html","");
menu.addSubItem("supportid","Mixing Ideas","","../../support/ideas/default.html","");
menu.addSubItem("supportid","Layout Patterns","","../../support/layout/default.html","");
menu.addSubItem("supportid","Quantity Calculators","","../../support/calculator/default.html","");
menu.addSubItem("supportid","&nbsp","","","");

menu.addSubItem("faqid","Floor Pavers","","../../faq/floor/default.html","");
menu.addSubItem("faqid","Roof Tiles","","../../faq/roof/default.html","");
menu.addSubItem("faqid","&nbsp","","","");

menu.showMenu();
}