$(document).ready(function () {

    $('#galleryImages').crossSlide({
        easing: 'linear',
        fade: 6
    }, [
    {
        src: '/images/slideshow/2.jpg',
        alt: 'Simrishamn',
        title: '',
        from: 'top left 1x',
        to: 'top left 1x',
        time: 3
    }, {
        src: '/images/slideshow/3.jpg',
        alt: 'Simrishamn',
        title: '',
        from: 'top left 1x',
        to: 'top left 1x',
        time: 3
    }, {
        src: '/images/slideshow/1.jpg',
        alt: 'Simrishamn',
        title: '',
        from: 'top left 1x',
        to: 'top left 1x',
        time: 3
    }

    ], function (idx, img, idxOut, imgOut) {
        if (idxOut == undefined) {
            // starting single image phase, put up caption and link
            if (img.title != "") {
                $('#imageDescription P').text(img.alt).css("padding", "5px");
                $('#imageDescription P').slideDown();
            }
            if (img.title != "") {
                $('#galleryContainer').click(function () {
                    window.location = img.title;
                });
            }
            else
                $('#galleryContainer').unbind("click");
        }
        else {
            $('#imageDescription P').slideUp();
        }
    });

});

    
