$(document).ready(function() {
    var timerId;
    slideImages();

    function slideImages() {
        var images = Array();
        var imageId = 0;

        $("#photo-box ul li").each(function(){
            images.push($(this).children('a').attr('href'));
        });

        timerId = setInterval(changeImage, 5000);

        function changeImage() {
            imageId++;
            if (imageId >= images.length)
                imageId = 0;
            $("#photo-display img").fadeOut('fast').attr("src", images[imageId]).fadeIn('slow');
        }
    }

    $('#slide1').cycle({
		fx: 'fade',
        timeout: 3500
	});
    $('#slide2').cycle({
		fx: 'fade',
        timeout: 3500
	});
	$('#ask a').click(function (e) {
        e.preventDefault();
        $('#contact-container').modal();
	});

    $("#photo-box li a").click(function(){
        $("#photo-display img").attr({"src": $(this).attr("href"), "title": $("> img", this).attr("title")});
        clearInterval(timerId);
        return false;
    });
});
