//ACCORDION DE CONCURSOS ////////////////////////////////////////////////////
function InitConcursos(){
	if($$('.concursoCat')!=""){
		$$('.concursoCat').each(function(enlace, i){
			enlace.setStyle('cursor', 'pointer');
			enlace.addEvent('click', function(e) {
				e = new Event(e);
				e.stop();
			});
		});
		var accordionPartido = new Accordion('.concursoCat', 'div.intConcurso', {start:true, opacity:false, alwaysHide:true, fixedHeight: false});
	}
}
/* -----------------------------------------------------------------------------
LOAD ---------------------------------------------------------------
----------------------------------------------------------------------------- */ 
window.addEvent('domready', InitConcursos);
