// JavaScript Document

window.addEvent('domready',function() {
	/* settings */
	var showDuration_landscape = 3000;
	var container_landscape = $('slideshow_container_landscape');
	//var container_landscape = $('slideshow_container_landscape');
	
	var images_landscape = container_landscape.getElements('img');
	//var images_landscape = container_landscape.getElements('img');
	
	var currentIndex_landscape = 0;
	//var currentIndex_landscape = 0;
	
	var interval_landscape;
	/* opacity and fade */
	images_landscape.each(function(img,i){ 
		if(i > 0) {
			img.set('opacity',0);
		}
	});
	/* worker */
	var show_landscape = function() {
		images_landscape[currentIndex_landscape].fade('out');
		images_landscape[currentIndex_landscape = currentIndex_landscape < images_landscape.length - 1 ? currentIndex_landscape+1 : 0].fade('in');
	};
	/* start once the page is finished loading */
	window.addEvent('load',function(){
		interval_landscape = show_landscape.periodical(showDuration_landscape);
	});
});
