window.addEvent('load', function() {
	var request = new Request({
			'url'		:	"carga-acordeon-cursos.php",
			'link'		:	'chain',
			onSuccess	: 	function(html) {
				//Clear the text currently inside the results div.
				$('divAcordeonCursos').set('text', '');
				//Inject the new DOM elements into the results div.
				$('divAcordeonCursos').innerHTML = html;
				
				// Instancio mi objeto Acordeón
				var acordeon = new Accordion($('activarAcordeon'), 'h1.acordeon1', 'div.acordeon2', {
									'opacity'		:	false,
									'onActive'		:	function(toggler, element) {
												toggler.setStyles({
													  //'backgroundColor'	: 	'#FFC291',
													  'backgroundImage'	:	'url(images/bg-acordeon-titulo-cursos-activo.jpg)',
													  'backgroundRepeat':	'repeat-x',
													  'color'			:	'#FFFFFF',
													  'cursor'			:	'default',
													  'borderColor'		:	'#ff5a00'
												});
									},
									'onBackground'	:	function(toggler, element) {
												toggler.setStyles({
													  'backgroundColor'	: 	'#DBE3EE',
													  'backgroundImage'	:	'url(images/flechita-abajo-doble2.gif)',
													  'backgroundRepeat':	'no-repeat',
													  'cursor'			:	'pointer',
													  'color'			:	'#587DB4',
													  'borderColor'		:	'#ECF1F4 #C6D5DF #C6D5DF #ECF1F4'
												});
									}
				});
				
//				arrancarTips();
			}
	});
	request.send();
});
