//Variables to set
between=28 //The pixel between the menus and the submenus
mainheight=25 //The height of the mainmenus
subheight=22 //The height of the submenus
pxspeed=10 //The pixel speed of the animation
timspeed=5 //The timer speed of the animation
menuy=25 //The top placement of the menu.
menux=0 //The left placement of the menu
//Images - Play with these
level0_regular="fotos/menu/level0_regular.gif"
level0_round="fotos/menu/level0_round.gif"
level1_regular="fotos/menu/level1_regular.gif"
level1_round="fotos/menu/level1_round.gif"
level1_sub="fotos/menu/level1_sub.gif"
level1_sub_round="fotos/menu/level1_sub_round.gif"
level1_round2="fotos/menu/level1_round2.gif"
level2_regular="fotos/menu/level2_regular.gif"
level2_round="fotos/menu/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)


//There are 3 different types of menus you can make
//top = Main menus
//sub = Sub menus
//sub2 = SubSub menus

//You control the look of the menus in the stylesheet

//makeMenu('TYPE','TEXT','LINK','TARGET', 'END (THE LAST MENU)')

//Menu 0 
makeMenu('top','Inicio')
	makeMenu('sub','Pagina Principal','principal.html','principal')

//makeMenu('sub2','nombre del coche',''

//Menu VEHICULOS DE OCASION
makeMenu('top','Veh&iacute;culo de Ocasi&oacute;n')
	makeMenu('sub','Saab')
	  makeMenu('sub2','9-3 CLASSIC','coches/VO/saab/classic.html','principal')
	  makeMenu('sub2','9-3 CLASSIC','coches/VO/saab/classic2.html','principal')
	  makeMenu('sub2','9-3 CLASSIC','coches/VO/saab/classic3.html','principal')
	makeMenu('sub','Volskwagen')
	  makeMenu('sub2','GOLF','coches/VO/volskwagen/golf.html','principal')
	  makeMenu('sub2','PASSAT','coches/VO/volskwagen/passat.html','principal')
	  makeMenu('sub2','PASSAT VARIANT','coches/VO/volskwagen/variant.html','principal')
	makeMenu('sub','Seat')
	  makeMenu('sub2','ALHAMBRA','coches/VO/seat/alhambra.html','principal')
	  makeMenu('sub2','LEON','coches/VO/seat/leon.html','principal')
	makeMenu('sub','Fiat')
	  makeMenu('sub2','PUNTO','coches/VO/fiat/punto.html','principal')
	//makeMenu('sub','Porsche')
	//makeMenu('sub','Otras marcas')
	makeMenu('sub','Vehiculo del Mes')
	  makeMenu('sub2','9-5 LINEAR SPORT','coches/DEMO/saab/9-5 linear sport.html','principal')


//Menu VEHICULOS DE GERENCIA
makeMenu('top','Veh&iacute;culo de Gerencia')
	makeMenu('sub','Saab')
	  makeMenu('sub2','9-3 SPORT HATCH','coches/DEMO/saab/9-3 SPORT HATCH.html','principal')
	  makeMenu('sub2','9-3 SPORT HATCH','coches/DEMO/saab/4969-DPJ.html','principal')
	  makeMenu('sub2','9-3 SPORT HATCH','coches/DEMO/saab/hatch linear.html','principal')
	  makeMenu('sub2','9-3 1.9 VECTOR F.P','coches/DEMO/saab/9485-DCV.html','principal')
	  makeMenu('sub2','9-3 LINEAR SPORT','coches/DEMO/saab/linear.html','principal')
	  makeMenu('sub2','9-5 VECTOR','coches/DEMO/saab/9-5 vector.html','principal')
	  makeMenu('sub2','9-5 W LINEAR SPORT','coches/DEMO/saab/6227-DSX.html','principal')
	makeMenu('sub','Daewoo')
	  makeMenu('sub2','LACETTI 1.8 CDX','coches/DEMO/daewoo/4448-CSJ.html','principal')
	makeMenu('sub','Suzuki')
	  makeMenu('sub2','SWIFT 1.5 GLX 5P','coches/DEMO/suzuki/6139-DPJ.html','principal')
	makeMenu('sub','Porsche')
	  makeMenu('sub2','CAYENNE S','coches/DEMO/porsche/4683-DXD.html','principal')

//Menu VEHICULOS KM 0
makeMenu('top','Veh&iacute;culos KM 0')
	makeMenu('sub','Saab')
	  makeMenu('sub2','9-3 SS LINEAR SPORT','coches/KM0/saab/3765-FDL.html','principal')
	//makeMenu('sub','Daewoo')

	//makeMenu('sub','Chevrolet')


//Menu INFORMACION
makeMenu('top','Informaci&oacute;n')
  makeMenu('sub','Localizaci&oacute;n','localizacion.html','principal')
  makeMenu('sub','Instalaciones')
	makeMenu('sub2','Exposici&oacute;n','exposicion.html','principal')
	makeMenu('sub2','Taller','taller.html','principal')

//Starting the menu
onload=SlideMenuInit;
