
/*Variables for each menu item: (** means that they have to be spesified!)
name: The name of the item. This must be unique for each item. Do not use spaces or strange charachters in this one! **
parent: The name of the menuitem you want this to "connect" to. This will be a submenu of the item that have the name you place in here. ** for all other then the topitems
text: The text you want in the item. ** (except if you use images) 
link: The page you want this item to link to.
target: The target window or frame you want the link to go to (Default is same window if you're not using frames, and the mainframe if you're using frames)
width: The width of the element. If not spesified it will get the default width spesified above.
height: The height of the element. If not spesified it will get the default height spesified above.
img1: The "off" image for element if you want to use images.
img2: The image that appears onmouseover if using images.
bgcoloroff: The background color for this item. If not spesified it will get the default background color spesified above.
bgcoloron: The "on" background color for this item. If not spesified it will get the default "on" background color spesified above.
textcolor: The text color for this item. If not spesified it will get the default text color spesified above.
hovercolor: The "on" text color for this item. If not spesified it will get the default "on" text color spesified above. Netscape4 ignores this
onclick: If you want something to happen when the element is clicked (different from going to a link) spesifiy it here.
onmouseover: This will happen when you mouseover the element. Could be status text, another imageswap or whatever.
onmouseout: This will happen when you mouseout the element.

Remember you can have as many levels/sublevels as you want. Just make sure you spesify the correct "parent" for each item.
To set styles for each level see above.
*/

//cm_makeMenu(name,parent,text,link,target,width,height,img1,img2,bgcoloroff,bgcoloron,textcolor,hovercolor,onclick,onmouseover,onmouseout)
//,'_self',180,100,'./menu/menu_arrow.gif','./imagenes/bt_eliminar.gif'

oCMenu.makeMenu('top6','','Torneos', '')

    oCMenu.makeMenu('sub1','top6','Ciudad de Parana','./ver_abajo.php?torneo=Ciudad_de_Parana&nombre=Ciudad de Parana&busco=0')
	oCMenu.makeMenu('sub2','top6','Ciudad Paisaje','./ver_abajo.php?torneo=Ciudad_Paisaje&nombre=Ciudad Paisaje&busco=0')
	oCMenu.makeMenu('sub3','top6','Club Interprofesional','./ver_abajo.php?torneo=Club_Interprofesional&nombre=Club Interprofesional&busco=0')
	oCMenu.makeMenu('sub5','top6','Del Sur','./ver_abajo.php?torneo=Del_Sur&nombre=Del Sur&busco=0')
	oCMenu.makeMenu('sub6','top6','Entre Rios','./ver_abajo.php?torneo=Entre_Rios&nombre=Entre Rios&busco=0')
	oCMenu.makeMenu('sub7','top6','Liga Amistad','./ver_abajo.php?torneo=Liga_Amistad&nombre=Liga Amistad&busco=0')
	oCMenu.makeMenu('sub8','top6','Liga De Veteranos','./ver_abajo.php?torneo=Liga_de_veteranos&nombre=Liga De Veteranos&busco=0')
	oCMenu.makeMenu('sub9','top6','Quinta Quinodoz','./ver_abajo.php?torneo=Quinta_Quinodoz&nombre=Quinta Quinodoz&busco=0')
	oCMenu.makeMenu('sub11','top6','Río Paraná','./ver_abajo.php?torneo=Rio_Parana&nombre=Río Paraná&busco=0')
	oCMenu.makeMenu('sub12','top6','Unión De Veteranos','./ver_abajo.php?torneo=Union_de_veteranos&nombre=Unión De Veteranos&busco=0')
	oCMenu.makeMenu('sub14','top6','Liga Confraternidad','./ver_abajo.php?torneo=Liga_Confraternidad&nombre=Liga Confraternidad&busco=0')
	oCMenu.makeMenu('sub15','top6','Ceberpa','./ver_abajo.php?torneo=Ceberpa&nombre=Ceberpa&busco=0')
	oCMenu.makeMenu('sub16','top6','Liga Renacer','./ver_abajo.php?torneo=Liga_Renacer&nombre=Liga Renacer&busco=0')
	oCMenu.makeMenu('sub17','top6','Liga del Parque','./ver_abajo.php?torneo=Liga_del_Parque&nombre=Liga del Parque&busco=0')
	oCMenu.makeMenu('sub18','top6','Esperanza','./ver_abajo.php?torneo=Esperanza&nombre=Esperanza&busco=0')
	oCMenu.makeMenu('sub19','top6','Viggiani','./ver_abajo.php?torneo=Viggiani&nombre=Viggiani&busco=0')
	oCMenu.makeMenu('sub20','top6','La Liga','./ver_abajo.php?torneo=La_Liga&nombre=La Liga&busco=0')
	oCMenu.makeMenu('sub21','top6','Los Angeles','./ver_abajo.php?torneo=Los_Angeles&nombre=Los Angeles&busco=0')
  
oCMenu.makeMenu('top2','','Principal', './home.php','abajo')	
oCMenu.makeMenu('top3','','Busqueda', './busco.php?cadena=&busco=0','abajo')
oCMenu.makeMenu('top4','','Reserva', './reserva.htm')
oCMenu.makeMenu('top5','','Almanaques', './imagen/almanaques/index.html')
oCMenu.makeMenu('top7','','Poster', './imagen/poster/index.html')
        
    
//Leave these two lines! Making the styles and then constructing the menu
oCMenu.makeStyle(); oCMenu.construct()          


