/* Copyright (c) 2008 brandperfection GmbH - www.brandperfection.de */

var aktuellvisible = -1;
var aktuellgeschwindigkeit = 2.70; // in Sekunden

$(document).ready(function(){
	if($('div.highlight')){
		//Anzahl der Texte feststellen
		var aktuellAnzahl = $(".highlight>div").length;
		
		//nach 2500 mSek wechseln
		window.setInterval("nextAktuell("+aktuellAnzahl+")", aktuellgeschwindigkeit*1000);
	}
});



function nextAktuell(anzahl){
	
	myItemObj = $(".highlight>div");
	
	if(anzahl>1){
		aktuellvisible++;
		for(i=0;i<anzahl;i++){
		
		
			if(myItemObj[i]){
				 //naechstes einblenden
				if(aktuellvisible>=anzahl)aktuellvisible=0;
				
				if(i==aktuellvisible){ //aktuelles einblenden
					myid = myItemObj[i].id;
					
					//alert(myid+"|"+$("#"+myid));
					
					$("#"+myid).show("fast");
				}else{ //alle anderen ausblenden
					myid = myItemObj[i].id;
					$("#"+myid).hide("fast");
				}
			}

			
		}
	}
}