// Creacion de menu anclo

//Menu object creation
oCMenu=new makeCM("oCMenu") //Making the menu object. Argument: menuname

oCMenu.frames = 0

//Menu properties   
oCMenu.pxBetween=20
oCMenu.fromLeft=20 
oCMenu.fromTop=100  
oCMenu.rows=1 
oCMenu.menuPlacement="center"
                                                             
oCMenu.offlineRoot="" 
oCMenu.onlineRoot="/anclo/" 
oCMenu.resizeCheck=1 
oCMenu.wait=100 /* tiempo de espera para el rollover */ 
oCMenu.fillImg="cm_fill.gif"
oCMenu.zIndex=0

//Background bar properties
oCMenu.useBar=1
oCMenu.barWidth="100%"
oCMenu.barHeight="50" 
oCMenu.barClass="clBar"
oCMenu.barX=0 
oCMenu.barY=100
oCMenu.barBorderX=0
oCMenu.barBorderY=0
oCMenu.barBorderClass=""

//Level properties - ALL properties have to be specified in level 0
oCMenu.level[0]=new cm_makeLevel() //Add this for each new level
oCMenu.level[0].width=120
oCMenu.level[0].height=50 
oCMenu.level[0].regClass="clLevel0"
oCMenu.level[0].overClass="clLevel0over"
oCMenu.level[0].borderX=1
oCMenu.level[0].borderY=0
oCMenu.level[0].borderClass="clLevel0border"
oCMenu.level[0].offsetX=0
oCMenu.level[0].offsetY=0
oCMenu.level[0].rows=0
oCMenu.level[0].arrow=0
oCMenu.level[0].arrowWidth=0
oCMenu.level[0].arrowHeight=0
oCMenu.level[0].align="bottom"

//EXAMPLE SUB LEVEL[1] PROPERTIES - You have to specify the properties you want different from LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[1]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[1].width=oCMenu.level[0].width-2
oCMenu.level[1].height=28
oCMenu.level[1].regClass="clLevel1"
oCMenu.level[1].overClass="clLevel1over"
oCMenu.level[1].borderX=1
oCMenu.level[1].borderY=1
oCMenu.level[1].align="right" 
oCMenu.level[1].offsetX=-(oCMenu.level[0].width-2)/2+50
oCMenu.level[1].offsetY=0
oCMenu.level[1].borderClass="clLevel1border"


//EXAMPLE SUB LEVEL[2] PROPERTIES - You have to spesify the properties you want different from LEVEL[1] OR LEVEL[0] - If you want all items to look the same just remove this
oCMenu.level[2]=new cm_makeLevel() //Add this for each new level (adding one to the number)
oCMenu.level[2].width=150
oCMenu.level[2].height=28
oCMenu.level[2].offsetX=0
oCMenu.level[2].offsetY=0
oCMenu.level[2].regClass="clLevel2"
oCMenu.level[2].overClass="clLevel2over"
oCMenu.level[2].borderClass="clLevel2border"


/******************************************
Menu item creation:
myCoolMenu.makeMenu(name, parent_name, text, link, target, width, height, regImage, overImage, regClass, overClass , align, rows, nolink, onclick, onmouseover, onmouseout) 
*************************************/
oCMenu.makeMenu('top0','','NOSOTROS','nosotros.html')
	
oCMenu.makeMenu('top1','','PRODUCTOS','productos.html')
	oCMenu.makeMenu('sub10','top1','1. ANCLAJE Y FIJACIÓN','anclaje.html','marco',170,0)
	     oCMenu.makeMenu('sub100','sub10','1.1 - Taquetes de Expansión','3_fijacion.html','marco',170,0)
		 oCMenu.makeMenu('sub101','sub10','1.2 - Anclas de Acero','6_fijacion.html','marco',170,0)
		 oCMenu.makeMenu('sub102','sub10','1.3 - Taquetería Ligera','8_fijacion.html','marco',170,0)
		 oCMenu.makeMenu('sub103','sub10','1.4 - Brocas de Acero','10_fijacion.html','marco',170,0)
		 oCMenu.makeMenu('sub104','sub10','* Descargar información PDF','test_pdf/anclaje.zip','',170,0)
	oCMenu.makeMenu('sub11','top1','2. SOPORTERÍA UNICANAL','soporteria.html','marco',170,0)
	     oCMenu.makeMenu('sub110','sub11','2.1 - Rieles Unicanal','5_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub111','sub11','2.2 - Mordazas Unicanal','10_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub112','sub11','2.3 - Soportes Unicanal','12_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub113','sub11','2.4 - Abrazaderas Unicanal ','13_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub114','sub11','2.5 - Barras Roscadas','14_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub115','sub11','2.6 - Mordazas para Barra','15_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub116','sub11','2.7 - Accesorios Unicanal','18_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub117','sub11','2.8 - Herrajes Unicanal','19_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub118','sub11','2.9 - Infothec','24_unicanal.html','marco',170,0)
		 oCMenu.makeMenu('sub119','sub11','*Descargar información PDF*','test_pdf/unicanal.zip','',170,0)
	oCMenu.makeMenu('sub12','top1','3. RACORES Y CONDUITS','racores.html','marco',170,0)
	     oCMenu.makeMenu('sub120','sub12','3.1 - Conduits y Racores Flexibles','4_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub121','sub12','3.2 - Racores Pared Delgada','7_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub122','sub12','3.3 - Racores Pared Gruesa','9_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub123','sub12','3.4 - Cuadralets Aluminio','10_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub124','sub12','3.5 - Cuadralets NOMET','12_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub125','sub12','3.6 -Electroplásticos','13_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub126','sub12','3.7 - Racores Cable','15_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub127','sub12','3.8 - Abrazaderas Unicanal','16_racores.html','marco',200,0)
		 oCMenu.makeMenu('sub128','sub12','*Descargar información PDF*','test_pdf/racores.zip','',200,0)
	
	oCMenu.makeMenu('sub13','top1','4. CAJAS Y GABINETES','cajas.html','',170,0)
	     oCMenu.makeMenu('sub130','sub13','*En Construcción*','','',110,0)
		 /*
		 oCMenu.makeMenu('sub131','sub13','4.2 - Especificaciones','','',200,0)
		 oCMenu.makeMenu('sub132','sub13','4.3 - Gabinetes NEMA 4','','',200,0)
		 oCMenu.makeMenu('sub133','sub13','4.4 - Equipo Opcional','','',200,0)
		 oCMenu.makeMenu('sub134','sub13','4.5 - Complementos de Instalación','','',200,0)
		 oCMenu.makeMenu('sub135','sub13','*Descargar información PDF*','','',200,0)
		 */
	oCMenu.makeMenu('sub14','top1','5. CABLEMALLA','cablemalla.html','',170,0)
	     oCMenu.makeMenu('sub140','sub14','*En Construcción*','','',110,0)
	oCMenu.makeMenu('sub15','top1','6. TUBERÍA HIDRAÚLICA','tuberia.html','',170,0)
	     oCMenu.makeMenu('sub150','sub15','*En Construcción*','','',110,0)
		 /*
		 oCMenu.makeMenu('sub151','sub15','6.2 - Mordazas para Barra','','',170,0)
		 oCMenu.makeMenu('sub152','sub15','6.3 - Abrazaderas','','',170,0)
		 oCMenu.makeMenu('sub153','sub15','*Descargar información PDF*','','',170,0)
		 */
	/*
	oCMenu.makeMenu('sub10','top1','uno','link')
		oCMenu.makeMenu('sub100', 'sub10', 'anidado 1', 'link')
		oCMenu.makeMenu('sub101', 'sub10', 'anidado 2', 'link')
	oCMenu.makeMenu('sub11','top1','dos','link')
	oCMenu.makeMenu('sub12','top1','tres','link')
	*/
	
	

oCMenu.makeMenu('top2','','LISTA DE PRECIOS','http://www.anclo.com.mx/precios_grl.html','_blank')

oCMenu.makeMenu('top3','','EQUIVALENCIA DE CLAVES','http://www.anclo.com.mx/private/INT1055.INT','_blank')


oCMenu.makeMenu('top5','','CONTACTAR','contacto.html')


oCMenu.makeMenu('top6','','ACCESO CLIENTES','clientes.html','_blank')


oCMenu.makeMenu('top7','','SUCURSALES','sucursales.html')

//Leave this line - it constructs the menu
oCMenu.construct()	