	
$(document).ready(function(){

	window.setInterval('slideshow()', 4000); // set duration here
	if($('#slideshowFahrschueler .active').length==0){
		$('#slideshowFahrschueler .slideshowItem:first').addClass('active').fadeIn(1000);
	}
	
	window.setInterval('slideshowHome()', 5000); // set duration here
	if($('#slideshowHome .active').length==0){
		$('#slideshowHome .slideshowItem:first').addClass('active').fadeIn(1200);
	}
})


	//Slideshow Fahrschueler
	function slideshow() {
		var actItem = $('#slideshowFahrschueler .active')
		actItem.fadeOut(1000,function(){
			var nextItem = (actItem.next('.slideshowItem').length==0) ? $('#slideshowFahrschueler .slideshowItem:first') : actItem.next('.slideshowItem')
			nextItem.fadeIn(1000,function(){
				$(this).addClass('active')
			})
			$(this).removeClass('active')
		})
	}
	
	//Slideshow Home
	function slideshowHome() {
		var actItem = $('#slideshowHome .active')
		actItem.fadeOut(1200,function(){
			var nextItem = (actItem.next('.slideshowItem').length==0) ? $('#slideshowHome .slideshowItem:first') : actItem.next('.slideshowItem')
			nextItem.fadeIn(1200,function(){
				$(this).addClass('active')
			})
			$(this).removeClass('active')
		})
	}
	
	
	
