//Variables to set
between=28 //The pixel between the menus and the submenus
mainheight=22 //Ancho entre imagenes del menu principal
subheight=22 //The height of the submenus
pxspeed=10 //The pixel speed of the animation
timspeed=15 //The timer speed of the animation
menuy=112 //The top placement of the menu.
menux=5 //The left placement of the menu

//Images
level0_regular="imagen/level0_regular.gif"
level0_round="imagen/level0_round.gif"
level1_regular="imagen/level1_regular.gif"
level1_round="imagen/level1_round.gif"
level1_sub="imagen/level1_sub.gif"
level1_sub_round="imagen/level1_sub_round.gif"
level1_round2="imagen/level1_round2.gif"
level2_regular="imagen/level2_regular.gif"
level2_round="imagen/level2_round.gif"

//Leave this line
preLoadBackgrounds(level0_regular,level0_round,level1_regular,level1_round,level1_sub,level1_sub_round,level1_round2,level2_regular,level2_round)


//Esto son los 3 diferentes tipos de menus que se pueden hacer
//top 	= Menu Principal
//sub 	= Menu Secundario
//sub2 	= Menu Dentro del Secundario

//You control the look of the menus in the stylesheet
//makeMenu('TYPE','TEXT','LINK','TARGET', 'END (THE LAST MENU)')

//Página Principal
makeMenu('top','Inicio','index.html')

//La Empresa
makeMenu('top','Acerca de Nosotros')
  makeMenu('sub','Misión','la_empresa.html#mision')
  makeMenu('sub','Visión','la_empresa.html#vision')
  makeMenu('sub','Historia','historia.html')
  makeMenu('sub','Valores','nuestros_valores.html')

//Servicios
makeMenu('top','Portafolio Servicios','servicios.html')

//Soluciones
makeMenu('top','Soluciones','')
	makeMenu('sub','Transaccionales','')
		makeMenu('sub2','SMART Banking','smart_banking.html')
		makeMenu('sub2','SMART Branch','smart_branch.html')		
		makeMenu('sub2','SMART C.N.B','smart_corresponsales.html')
		makeMenu('sub2','SMART Pagos','smart_pagos.html')		
		makeMenu('sub2','SMART Recaudos','smart_recaudos.html')
	//makeMenu('sub','Voz/Mensajeria','')
		//makeMenu('sub2','De Voz','soluciones_voz.html')
		//makeMenu('sub2','De Mensajeria','soluciones_mensajeria.html')

//Aliados y Socios
makeMenu('top','Aliados Estratégicos','aliados.html')

//Clientes y Casos de Exito
makeMenu('top','Clientes','clientes.html')

//Talento Humano
makeMenu('top','Zona Empleo','zona_empleo.html')

//Menu 6
makeMenu('top','Correo')
  makeMenu('sub','Gerencia Comercial','mailto:info@lasc.com.co')
  makeMenu('sub','Contáctenos','contacto.html')
  makeMenu('sub','Correo Interno','http://correo.telecom.com.co/','_blank',1) 

//Starting the menu
onload=SlideMenuInit;