var header_images = 'Image-Bilder_01-03.jpg,Image-Bilder_01-04.jpg,Image-Bilder_01-06.jpg,Image-Bilder_01-08.jpg,Image-Bilder_01-09.jpg,Image-Bilder_01-12.jpg,Image-Bilder_01-18.jpg,Image-Bilder_01-20.jpg,Image-Bilder_01-22.jpg,Image-Bilder_01-24.jpg,Image-Bilder_01-26.jpg,Image-Bilder_01-28.jpg,Image-Bilder_01-31.jpg,Image-Bilder_01-32.jpg,Image-Bilder_01-33.jpg'.split(',');

var which_images_loaded = [];
var current_img_index = 0;
$(function(){

    var headercontainer = $('#landschaft_container');

    $.each(header_images,function(i,a)
        {
        var newimg = new Image();
        headercontainer.prepend(newimg);
        $(newimg).load(function() {which_images_loaded.push(this);});
        newimg.src = header_img_path + a;
        });

        setTimeout(function(){setInterval("show_next_img()",6000);},6000);

});

function show_next_img()
    {
    if(current_img_index+1>=which_images_loaded.length) current_img_index=0;
    $(which_images_loaded[current_img_index++]).hide().appendTo('#landschaft_container').fadeIn(1000);
    }
