    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();
        }

$(document).ready(function(){

$(".auteur-liste-complete-cadre").mousemove(function()
    {
    $(this).children("h1").attr("class","h1-over");
    });

$(".auteur-liste-complete-cadre").mouseout(function()
    {
    $(this).children("h1").attr("class","h1-normal");
    });

$("#ajaxtest").click(function()
    {
    var a=$.get("conferenciers/ajax?auteur=88",
   function(data)
        {
        var element=data.split("[PARSER-AJAX]");
        alert(element.length);
        //$(".gauche-auteur").html(data);
        });
    });

});

    
