//ACCORDION DE LA BARRA DE PARTIDOS ////////////////////////////////////////////////////
function InitPartidos(){	
	if($$('.accLink')!=""){
		$$('.accLink').each(function(enlace){
			enlace.addEvent('click', function(e) {
				e = new Event(e);
				e.stop();
			});
		});
		var accordionPartido = new Accordion('a.accLink', 'div.accPartido', {start:true, opacity:false, alwaysHide:true});
	}
}

/* -----------------------------------------------------------------------------
LOAD ---------------------------------------------------------------
----------------------------------------------------------------------------- */ 
window.addEvent('domready', InitPartidos);