﻿// Gestion des photos
$(document).ready(function () {
    $(".fancy").fancybox({
        'speedIn': 600,
        'speedOut': 200,
        'type': 'image',
        'titlePosition': 'inside',
        'centerOnScroll': true
    });

    $("#bloc_thumbs a").click(
        function () {
            var $img = $('img', $(this));
            if (!$img.hasClass("photo_thumb_actif")) {
                var $src = $(this).attr("href");
                $("#photo_zoom").attr("src", $src);
                $("#photo_zoom_link").attr("href", $src);
                $("#bloc_thumbs img").removeClass("photo_thumb_actif").addClass("photo_thumb");
                $img.removeClass("photo_thumb").addClass("photo_thumb_actif");
            }
            return false;
        }
    );
});
