/**
Huvudscript för raek.nu

Skapat av Hasse Östlund, hasseo.net, 101117*/

$(document).ready(function(){

   slideshow(1);

});




function slideshow(currentPhoto){

       // alert(currentPhoto);

        var numberOfPhotos = $("#bildspel img").length;
        currentPhoto = currentPhoto%numberOfPhotos;

        $("#bildspel img").eq(currentPhoto).fadeOut('slow', function(){

            $("#bildspel img").each(function(i){

               $(this).css('zIndex', ((numberOfPhotos - i) + currentPhoto)%numberOfPhotos);

            });



            $(this).show();

            var tmp = ++currentPhoto;

            setTimeout("slideshow(" + tmp + ");",10000);

        });
 }


