window.addEvent('domready',function() { /* preloading */ var imagesDir = 'http://www.maspi.net/coverimages/'; var images = ['mp2.jpg','mp3.jpg','mp4.jpg','mp5.jpg','mp6.jpg','mp8.jpg']; var holder = $('slideshow-holder'); images.each(function(img,i){ images[i] = imagesDir + '' + img; }); //add dir to images var progressTemplate = 'Llegint {x} de ' + images.length; var updateProgress = function(num) { progress.set('text',progressTemplate.replace('{x}',num)); }; var progress = $('progress'); //updateProgress('text','0'); var loader = new Asset.images(images, { onProgress: function(c,index) { updateProgress(index + 1); }, onComplete: function() { var slides = []; /* put images into page */ images.each(function(im) { slides.push(new Element('img',{ src:im, width: 640, height:427, styles: { opacity:0, top:0, left:0, position:'absolute', 'z-index': 10 } }).inject(holder)); }); var showInterval = 3500; var index = 0; progress.destroy(); (function() {slides[index].tween('opacity',1); }).delay(1000); var start = function() { (function() { holder.setStyle('background',''); slides[index].fade(0); ++index; index = (slides[index] ? index : 0); slides[index].fade(1); }).periodical(showInterval); }; /* start the show */ start(); } }); });