/* SUPERSIMPLE IMAGESLIDESHOW / WITH BACKGROUND PICTURES
// *****************************************************
//
// Copyright 2010 Florian Schommertz | GNU License
// www.digital-noises.com
// Feel free to use
// Please Keep thise header
//
// *****************************************************
*/

var last = 0;
var c = [];
var p = 0;
var fte = true;
function doAnimation() {

	if (p == 0) {
		$(c[last]).fadeOut(4000);
	}
	//
	if (fte) {
		$(c[p]).fadeIn(0, setTimeout("doAnimation()",7000));
		fte = false;
	} else {
		$(c[p]).fadeIn(4500, function () {
			if (p != 0) {		
				$(c[last]).css("display", "none");
			}
			last = p;
	    	p++;		
	    	if (p>=c.length) {
	    		p = 0;
	    	}
	    	setTimeout("doAnimation()",7000);
		});
	}
}
//
//
//
function bilderinit() {
	var bildRotator = $.makeArray($(".bildOfImageRotator"));
	$(bildRotator).each(function(int) {
		c.push(this);
	});
	doAnimation();
}
