<!--
/*
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;
var url = document.location.href
//define menu items (first parameter of NavBarMenu specifies main category width, second specifies sub category width in pixels)
//add more menus simply by adding more "blocks" of same code below
dhtmlMenu = new NavBarMenu(100, 105);
dhtmlMenu.addItem(new NavBarMenuItem("El Aloe", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Propiedades", "http://latiendadelaloe.comserpro.com/aloe/index.php"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 105);
dhtmlMenu.addItem(new NavBarMenuItem("Productos", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Presentación", "http://latiendadelaloe.comserpro.com/principal.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 120);
dhtmlMenu.addItem(new NavBarMenuItem("Compra", ""));
dhtmlMenu.addItem(new NavBarMenuItem("General", "http://latiendadelaloe.comserpro.com/todos.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Cosmética", "http://latiendadelaloe.comserpro.com/carrocos.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Tratamiento", "http://latiendadelaloe.comserpro.com/carrotrat.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Mi cesta", "http://latiendadelaloe.comserpro.com/cesta.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Enviar pedido", "http://latiendadelaloe.comserpro.com/formulario.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Compra rápida", "http://latiendadelaloe.comserpro.com/formpedi.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Condiciones venta", "http://latiendadelaloe.comserpro.com/condicion.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 105);
dhtmlMenu.addItem(new NavBarMenuItem("Nosotros", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Quienes somos", "http://latiendadelaloe.comserpro.com/nosotros.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 122);
dhtmlMenu.addItem(new NavBarMenuItem("Opiniones", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Panel de opiniones", "http://latiendadelaloe.comserpro.com/panopin.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Enviar opinion", "http://latiendadelaloe.comserpro.com/formopin.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 146);
dhtmlMenu.addItem(new NavBarMenuItem("Ayuda", ""));
dhtmlMenu.addItem(new NavBarMenuItem("Respuesta a preguntas", "http://latiendadelaloe.comserpro.com/faq.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Como realizar compra", "http://latiendadelaloe.comserpro.com/help.html"));
dhtmlMenu.addItem(new NavBarMenuItem("Compra rápida", "http://latiendadelaloe.comserpro.com/helpcr.html"));
myNavBar1.addMenu(dhtmlMenu);
dhtmlMenu = new NavBarMenu(100, 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("#FFFFFF", "#FFFFFF", "#006600", "#FFFFCC", "#006666", "#FFFFFF", "#006666", "#000066", "#99CC00")
//                       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);
//}
-->