    function filmSelectionnerImage(element)
        {
        $("#"+element).parent().parent().children(".film-visioneuse, .film-visioneuse-court").children("img").show();
        $("#"+element).parent().parent().children(".film-visioneuse, .film-visioneuse-court").children("div").hide();
        $("#"+element).parent().parent().children(".film-visioneuse, .film-visioneuse-court").children("img").attr("src",$("#"+element).attr("src"));
        }

    function filmSelectionnerVideo(element)
        {
        $("#"+element).parent().parent().children(".film-visioneuse, .film-visioneuse-court").children("img").hide();
        $("#"+element).parent().parent().children(".film-visioneuse, .film-visioneuse-court").children("div").show();
        }

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

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

    function filmListeSelectionnerVideo(element)
        {
        $("#"+element).parent().parent().children(".film-liste-complete-visioneuse").children("img").hide();
        $("#"+element).parent().parent().children(".film-liste-complete-visioneuse").children("div").show();
        }




   /*     $("#"+element).children("ul").animate({
        display:toggle}, 500 );

        }*/

$(document).ready(function(){

$(".film-telechargement-lien").click(function(event)
    {
    event.preventDefault();
    $(this).parent().children(".film-telechargement-liste").toggle();

    });

});

    
