﻿// JavaScript Document
function initSlideShow(site){
	if(jQuery('#slideList img').length>=2) setInterval("slideShow()",7000);//HER ?NDRES HASTIGHEDEN
}
function slideShow() {
    var activeImg = jQuery('#slideList a img.active');
    if(activeImg.length==0) activeImg = jQuery('#slideList a img:last');
    var nextImage = activeImg.next().length ? activeImg.next() : jQuery('#slideList a img:first');
    activeImg.addClass('last-active');
    nextImage.css({opacity: 0.0})
        .addClass('active')
        .animate({opacity: 1.0}, 900, function(){
            activeImg.removeClass('active last-active');
        });
}
jQuery(document).ready(function(){
	initSlideShow();
});

