<!--
/*
Top Navigational Bar II (By Mike Hall @ Brainjar.com)
Last updated: 00/05/08
Permission granted and modified by Dynamicdrive.com to include script in archive
For this and 100's more DHTML scripts, visit http://dynamicdrive.com
*/
var myNavBar1 = new NavBar(0);
var dhtmlMenu;
dhtmlMenu = new NavBarMenu(90, 92);
dhtmlMenu.addItem(new NavBarMenuItem("El Aloe", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Propiedades", "http://latiendadelaloe.comserpro.com/aloe/"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(90, 92);
dhtmlMenu.addItem(new NavBarMenuItem("Productos", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Presentación", "principal.html"))
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(90, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Compra", ""));
dhtmlMenu.addItem(new NavBarMenuItem("General", "todos.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Cosmética", "carrocos.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Tratamiento", "carrotrat.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mi cesta", "cesta.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Enviar pedido", "formulario.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Compra rápida", "formpedi.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Condiciones venta", "condicion.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(90, 100);
dhtmlMenu.addItem(new NavBarMenuItem("Nosotros", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Quienes somos", "nosotros.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(90, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Opiniones", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Panel de opiniones", "http://latiendadelaloe.comserpro.com/panopin.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Enviar opinion", "formopin.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(90, 145);
dhtmlMenu.addItem(new NavBarMenuItem("Ayuda", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Respuesta a preguntas", "faq.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Como realizar compra", "help.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Compra rápida", "helpcr.html"));
myNavBar1.addMenu(dhtmlMenu);

dhtmlMenu = new NavBarMenu(90, 150);
dhtmlMenu.addItem(new NavBarMenuItem("Distribución", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Distribuidores minoristas", "http://latiendadelaloe.comserpro.com/minordist/index.php"));
myNavBar1.addMenu(dhtmlMenu);

//set menu colors 
//1)borde 2)color letra 3)color fondo 
//4)color letra selecc 5)color fondo selección título 
//6) color letra submenu 7) color fondo submenú
//8) color letra submenú seleccionado 8) color fondo submenú selecc
//myNavBar1.setColors("#000000", "#000000", "#C0C0C0", "#ffffff", "#666666", "#000000", "#cccccc", "#ffffff", "#000080")
myNavBar1.setColors("#006205","#ffffff","#008000","#FFFF00","#006205","#FFFF00","#006205","#ffffff","#00B700")
//                       1         2          3          4          5          6          7         8          9
//uncomment below line to center the menu (valid values are "left", "center", and "right"
//myNavBar1.setAlign("center")
//***************
//var fullWidth;
//function init() {
  // Get width of window, need to account for scrollbar width in Netscape.
  //fullWidth = getWindowWidth() 
    //- (isMinNS4 && getWindowHeight() < getPageHeight() ? 16 : 0);
  //myNavBar1.resize(fullWidth);
  //myNavBar1.create();
  //myNavBar1.setzIndex(2);
//}
-->