//ACCORDION DEL MENU ////////////////////////////////////////////////////
function initMenu(){
	var enlaces = new Array();
	var activo = "no";
	
	if($$('.subNav')!=""){
		$$('.subNav').getPrevious().each(function(enlace, i){
			if(enlace.id == "Activo") activo = i;
			enlaces.push(enlace);
			enlace.setStyle('cursor', 'pointer');
			enlace.addEvent('click', function(e) {
				e = new Event(e);
				e.stop();
			});
		});
		if(activo!="no"){
			var accordionPartido = new Accordion(enlaces, '.subNav', {start:true, opacity:false, alwaysHide:true, 
				onActive: function(toggler, element){
					toggler.addClass('elmActivo');
				},
				onBackground: function(toggler, element){
					toggler.removeClass('elmActivo');
				}	
			}).display(activo);
		}else{
			 var accordionPartido = new Accordion(enlaces, '.subNav', {start:true, opacity:false, alwaysHide:true, 
			 	onActive: function(toggler, element){
					toggler.addClass('elmActivo');
			 	},
				onBackground: function(toggler, element){
					toggler.removeClass('elmActivo');
				}	
			 });
		}
	}
}

/* -----------------------------------------------------------------------------
LOAD ---------------------------------------------------------------
----------------------------------------------------------------------------- */ 
window.addEvent('domready', initMenu);