//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("webmasterid", "Acceuil", "Acceuil", "http://www.aroyphoto.com/",  null);
menu.addItem("newsid", "A propos", "A propos",  null, null);
menu.addItem("freedownloadid", "Portfolio", "Portfolio",  null, null);

menu.addItem("contactid", "Contact", "Contact",  null, null);
menu.addItem("miscid", "Liens", "Liens",  null, null);

menu.addSubItem("webmasterid", "Acceuil", "Acceuil",  "http://www.aroyphoto.com/", "");


menu.addSubItem("newsid", "Profils", "Profils",  "sommaire.html", "");
menu.addSubItem("newsid", "Services offerts", "Services offerts",  "service.html", "");

menu.addSubItem("freedownloadid", "Photographies", "Photographies",  "gallerie.html", "");


menu.addSubItem("contactid", "Courriel", "Courriel",  "mailto:aroyphoto@gmail.com;", "");
menu.addSubItem("contactid", "Coordonn&#233es", "Coordonn&#233;es",  "coordonnees.html", "");

menu.addSubItem("miscid", "CAPIC", "Capic",  "http://www.capic.com/", "_blank");
menu.addSubItem("miscid", "Optilog", "Optilog",  "http://www.optilog.com/", "_blank");
menu.addSubItem("miscid", "Zone solutions", "Zone solutions",  "http://www.zonesolutions.ca/", "_blank");
menu.showMenu();
}
