function youtube_show(place,code) {

    var html= '<div id="object_' + code + '><object' +
          '" height="350" width="420"><param name="movie" value="http://www.youtube.com/v/' + code +
          '"><param name="wmode" value="transparent"><embed id="embed_' + code + '" src="http://www.youtube.com/v/' + code +
          '" type="application/x-shockwave-flash" wmode="transparent" height="350" width="420"></object></div>';
 
    place.append( html );
}

function youtubize(){
    var all = $(".youtube_link")
    all.each( function() {
        var id = this.id;
        out = id.split('__');
        if( out[0] == 'youtube' ){
            youtube_show( $(this).parent() ,out[1])
        }
    } );
}

$( function() {
    youtubize();
    $(".copied-path").html( $("#path").html() );
} );

