// =======================================================================
// Carga del contenido en una capa mostrando la imagen de cargando por AJAX
// =======================================================================
window.addEvent('domready', function() {
	/* settings */
	var showDuration = 5000;
	var container = $('contenidoImagenCabeceraWeb');
	var images = container.getElements('img');
	var currentIndex = 0;
	var interval;
	/* opacity and fade */
	images.each(function(img,i){ 
		if(i > 0) {
			img.set('opacity',0);
		}
	});
	/* worker */
	var show = function() {
		images[currentIndex].fade('out');
		images[currentIndex = currentIndex < images.length - 1 ? currentIndex+1 : 0].fade('in');
	};
	/* start once the page is finished loading */
	window.addEvent('load',function(){
		interval = show.periodical(showDuration);
	});
	
	//store titles and text
	$$('a.enlaceTip').each(function(element,index) {
		var content = element.get('title').split('::');
		element.store('tip:title', content[0]);
		element.store('tip:text', content[1]);
	});
	
	// Acordeon para multimedia
	var accordion = new Accordion($$('.toggler'),$$('.element'), {
		opacity: false, 
		alwaysHide: true,
		show:-1,
		onActive: function(toggler) { toggler.setStyle('color', '#ffcc00')
									  toggler.setStyle('background-color', '#8a6fb3')
									  toggler.setStyle('background', 'url(/img/bg-titulosmultimediaclose.png) no-repeat right');
									},
		onBackground: function(toggler) { toggler.setStyle('background-color', '#8a6fb3')
									  	  toggler.setStyle('background', 'url(/img/bg-titulosmultimedia.png) no-repeat right')
										  toggler.setStyle('color', '#ffcc00');}
	});
	
	//create the tooltips
	var tipz = new Tips('.enlaceTip',{
		className: 'enlaceTip',
		fixed: true,
		hideDelay: 50,
		showDelay: 50
	});
	
	// Move to actos div
	new SmoothScroll({ duration:700 }, window);
});