			Ajax.Tree.Invoice = Ajax.Tree.create({
				types: {
					menu: {
						insertion: function(el,data){
							var node = Builder.node('dt',[data],
							[]
							);
							el.appendChild(node);
						}
									
					},
			
			enlace: {
					insertion: function(el,data){
							var node = Builder.node('dl',[data],
							[]
							);
							el.appendChild(node);
						},
						onClick: function(event){
						window.location = this.element.id;
						}
						// nothing to do if default behaviour is all that is needed
					},
					menuenlace: {
					insertion: function(el,data){
							var node = Builder.node('dt',[data],
							[]
							);
							el.appendChild(node);
						},
						onClick: function(event){
						window.location = this.element.id;
						}
						// nothing to do if default behaviour is all that is needed
					}
					
				},
				on_nodo_noticias: function(){
				
				},
				on_nodo_elgrup: function(){
					new Ajax.Tree.Invoice(this.element,'director.php','enlace',{data:'Director'});
					new Ajax.Tree.Invoice(this.element,'musicos.php','enlace',{data:'Músicos'});
				},
				on_nodo_repert: function(){
					new Ajax.Tree.Invoice(this.element,'obras.php','enlace',{data:'Obras'});
				},
				on_nodo_conciertos: function(){
					new Ajax.Tree.Invoice(this.element,'temporada_actual.php','enlace',{data:'Temporada actual'});
					new Ajax.Tree.Invoice(this.element,'temporadas_pasadas.php','enlace',{data:'Temporadas pasadas'});
				},
				on_nodo_musica: function(){
					new Ajax.Tree.Invoice(this.element,'monografias.php','enlace',{data:'Series Monográficas'});
					new Ajax.Tree.Invoice(this.element,'single.php','enlace',{data:'Serie Single'});
					new Ajax.Tree.Invoice(this.element,'archivo.php','enlace',{data:'Archivo'});
				},
				on_nodo_prensa: function(){
					new Ajax.Tree.Invoice(this.element,'fotos.php','enlace',{data:'Fotos Alta Resolución'});
					new Ajax.Tree.Invoice(this.element,'dossier.php','enlace',{data:'Dossier Pdf'});
				},
				on_nodo_network: function(){
					new Ajax.Tree.Invoice(this.element,'patrocinadores.php','enlace',{data:'Patrocinadores'});
					new Ajax.Tree.Invoice(this.element,'colaboradores.php','enlace',{data:'Colaboradores'});
					new Ajax.Tree.Invoice(this.element,'entrevistas.php','enlace',{data:'Entrevistas'});
					new Ajax.Tree.Invoice(this.element,'enlaces.php','enlace',{data:'Enlaces'});
				},
				on_nodo_contacto: function(){
					new Ajax.Tree.Invoice(this.element,'contacto.php','enlace',{data:'Contactar con El Grup'});
					new Ajax.Tree.Invoice(this.element,'lista-correo.php','enlace',{data:'Lista de correo-noticias'});
				}

			});

			var nodo_noticias = new Ajax.Tree.Invoice('parent','noticias.php','menuenlace',{data:'Noticias'})
			var nodo_elgrup = new Ajax.Tree.Invoice('parent','grup.php','menu',{data:'El Grup'});
			var nodo_conciertos = new Ajax.Tree.Invoice('parent','conciertos.php','menu',{data:'Conciertos'});
			var nodo_repert = new Ajax.Tree.Invoice('parent','repertorio.php','menu',{data:'Repertorio'});
			var nodo_musica = new Ajax.Tree.Invoice('parent','musica.php','menu',{data:'Música'});
			var nodo_prensa = new Ajax.Tree.Invoice('parent','prensa.php','menu',{data:'Prensa'});
			var nodo_network = new Ajax.Tree.Invoice('parent','network.php','menu',{data:'Network'});
			var nodo_contacto = new Ajax.Tree.Invoice('parent','contacto.php','menu',{data:'Contacto'});

			nodo_noticias.on_nodo_noticias();
			nodo_elgrup.on_nodo_elgrup();
			nodo_conciertos.on_nodo_conciertos();
			nodo_repert.on_nodo_repert();
			nodo_musica.on_nodo_musica();
			nodo_prensa.on_nodo_prensa();
			nodo_network.on_nodo_network();
			nodo_contacto.on_nodo_contacto();
			
			nodo_elgrup.toggleChildren();
			nodo_elgrup.toggleChildren();
			nodo_repert.toggleChildren();
			nodo_repert.toggleChildren();
			nodo_musica.toggleChildren();
			nodo_musica.toggleChildren();
			nodo_prensa.toggleChildren();
			nodo_prensa.toggleChildren();
			nodo_network.toggleChildren();
			nodo_network.toggleChildren();
			nodo_contacto.toggleChildren();
			nodo_contacto.toggleChildren();
			nodo_conciertos.toggleChildren();
			nodo_conciertos.toggleChildren();


