window.addEvent('domready',function() {
	/* preloading */
	var imagesDir = 'site_images/homepage_words/';
	var imagelist = ['romantic.jpg','spontaneous.jpg','natural.jpg','beautiful.jpg','candid.jpg','contemporary.jpg','inspiring.jpg','refreshing.jpg','innovative.jpg','emotional.jpg','playful.jpg','timeless.jpg','fun.jpg','classic.jpg','passionate.jpg','fashionable.jpg','artistic.jpg','energetic.jpg','happy.jpg','forever.jpg'];
	var images = (imagelist);	
	
	var holder = $('slideshow-holder-words');
	images.each(function(img,i){ images[i] = imagesDir + '' + img; }); //add dir to images
	var progressTemplate = 'Loading image {x} of ' + 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('text',index + 1);
		},
		onComplete: function() {
			var slides = [];
			/* put images into page */
			images.each(function(im) {
				slides.push(new Element('img',{
					src:im,
					width: 387,
					height: 175,
					styles: {
						opacity:0,
						top:0,
						right:0,
						position:'absolute',
						'z-index': 10
					}
				}).inject(holder));
				/*holder.setStyle('background','url(logo.png) center 80px no-repeat');*/
			});
			var showInterval = 3000;
			var index = 0;
			progress.set('text','Loading Images ...');
			(function() {slides[index].tween('opacity',200); }).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();
		}
	});
});

shuffle = function(o){ 
	for(var j, x, i = o.length; i; j = parseInt(Math.random() * i), x = o[--i], o[i] = o[j], o[j] = x);
	return o;
};
