﻿        $(function() {
            if ($("#galleryAbout").children().length > 1) {
                $("#galleryAbout").children().css("display", "none");
                $("#galleryAbout img:first").fadeIn(0);

                function removeFirst() {
                    $("#galleryAbout img:first").fadeOut(750, function() {
                        $("#galleryAbout").append($("#galleryAbout img:first"));
                        $("#galleryAbout img:first").fadeIn(1000);
                    });
                }
                
                setInterval(removeFirst, 8500);
            }
        });