var fadeIndex = 0;
window.addEvent('domready', function() {
	loadnext.periodical(6000);

	$('div1').set('styles', {		
		'position': 'absolute'
	});
	$('div2').set('styles', {
		'opacity': '0',
		'position': 'absolute'
	});
	$('div3').set('styles', {
		'opacity': '0',
		'position': 'absolute'
	});
	$('div1').set('tween', {duration: 'long'});
	$('div2').set('tween', {duration: 'long'});
	$('div3').set('tween', {duration: 'long'});

	
	function loadnext(){
		
		switch (fadeIndex){
		case 0:
			$('div1').fade(0);
			$('div2').fade(1);
			fadeIndex++;
			break;
		case 1:
			$('div2').fade(0);
			$('div3').fade(1);
			fadeIndex++;
			break;
		case 2:
			$('div3').fade(0);
			$('div1').fade(1);
			fadeIndex=0;
			break;
		}
		
	}
});