    function expositionListeSelectionnerImage(element, image)
        {
        $("#"+element).parent().parent().children(".exposition-liste-complete-visioneuse").children("img").show();
        $("#"+element).parent().parent().children(".exposition-liste-complete-visioneuse").children("div").hide();

        $("#"+element).parent().parent().children(".exposition-liste-complete-visioneuse").children("img").attr("src","http://www.cap-monde.com/2011/site2/"+image);

        }
        
$(document).ready(function(){

    $(".film-vignettes img:not(:last), .film-vignettes-court img:not(:last)").click(function()
        {
        $(this).parent().parent().children(".film-visioneuse").children("img").show();
        $(this).parent().parent().children(".film-visioneuse").children("div").hide();
        $(this).parent().parent().children(".film-visioneuse").children("img").attr("src",$(this).attr("src"));
        }
    );

    $(".film-vignettes img:last, .film-vignettes-court img:last").click(function()
        {
        $(this).parent().parent().children(".film-visioneuse").children("img").hide();
        $(this).parent().parent().children(".film-visioneuse").children("div").show();
        }
    );


       /* $(".waterwheel-carousel-default").waterwheelCarousel({
    itemSeparationFactor:20,startingItemSeparation:100,opacityDecreaseFactor:1});*/

        

});

    
