$(document).ready(function(){

    $("#rejouer_video_bandeau").click(function() {
        $("#jquery_jplayer_1").jPlayer("play");
        $(this).hide();
    })

    $("#jquery_jplayer_1").jPlayer({
        ready: function () {
            
            var nom_bandeau = $("#nom_bandeau").html();
            
            var setMedia = $(this).jPlayer("setMedia", {
                                m4v: "/videos/upload_enseignes/" + nom_bandeau,
                                poster: "/imgs/default/upload_enseignes/" + nom_bandeau + ".jpg"
                            });

            if($.jPlayer.platform.tablet == true) {
                $("#rejouer_video_bandeau").show();  
            }
            else {
                setMedia.jPlayer("play");
            }
            
            $("#projets .loader_bg").hide();
        },
        ended: function() {
             $("#rejouer_video_bandeau").show();
        },
        swfPath: "/swf",
        supplied: "m4v",
        preload: "auto",
        backgroundColor: "#fff",
        size: {
            width: "655px",
            height: "240px"
        }

    });
    
});
