//ACCORDION DE LA BARRA DE PARTIDOS ////////////////////////////////////////////////////
function InitPalmares(){	

	var accordionPalmares = new Accordion('li.tempodadaLink', 'div.temporada', {start:0, opacity:false});
	
	var enlaces = $$('.fotosHistoria');
	var imagenes = $$('.imagenCambiar');
	
	enlaces.each(function(lista, i){
		links = lista.getElements('a');
		
		links.each(function(elem){
			elem.addEvent('click', function(e){
				e = new Event(e);	e.stop();
				
				imagenes[i].setProperty('src', elem);		
			
			});
		});
		
	});
	
}

 
/* -----------------------------------------------------------------------------
LOAD ---------------------------------------------------------------
----------------------------------------------------------------------------- */ 
window.addEvent('domready', InitPalmares);