/* Slideshow home rimini */

var a = new Array();
var index = 0;

$(document).ready(function () {
    a = $(".imgSlideShow");
    setTimeout('ImagesRotation();', 5000);
});

function ImagesRotation() {
    $("#imageBox").fadeOut(1000, function () {
        document.getElementById("imageBox").src = a[index].src;
        $("#imageBox").fadeIn(1000, function () {
            index++;
            if (index >= a.length) {
                index = 0;
            }
            setTimeout('ImagesRotation();', 5000);
        });
    });
}
