/**
 * Javascript-Functions - feyler.com
 * (c) CLICKSPORTS DIGITAL SOLUTIONS
 * http://www.clicksports.de
 * 
 * $Rev: 7 $
 * $Author: cs $
 * $Date: 2009-11-10 12:14:51 +0100 (Di, 10 Nov 2009) $
 */

document.observe('dom:loaded', function() {
	
	var images = [
		'layout/teaser_7.jpg',
		'layout/teaser_6.jpg',
		'layout/teaser_5.jpg',
		'layout/teaser_4.jpg',
		'layout/teaser_3.jpg',
		'layout/teaser_2.jpg',
		'layout/teaser_1.jpg'
	];
	new Widget.Fader('teaser_image', images, {
		fadeInDuration: 1.7,
		fadeOutDuration: 1,
		displayDuration: 2.5
	});
	
	$('shop_over').setStyle({ 'opacity' : 0 });
	imageflash('start');
});

function imageflash(type) {

	if(type == 'start') {
		var op = 1;
	} else var op = 0;
	
	var imgflash = new Effect.Opacity('shop_over', {
		to: op,
		duration: 2,
		afterFinish: function() {
			
			if(type == 'start') imageflash('stop');
			else imageflash('start');
		}
	});
}
