$(document).ready(function() {
  $("a[title^='video']").each(function(i){  
    txtalt=this.title;
    tabalt=txtalt.split("-");
    larglong=tabalt[2].split("x");
    newHtmlLien="";
    newHtmlLien="<div class=\"medias\"><div class=\"video\"><object type=\"application/x-shockwave-flash\" data=\"/manage/core/1.3e/images_manage/players/player_flv.swf?flv=";
    newHtmlLien+=this.href+"&amp;width="+larglong[0]+"&amp;height="+larglong[1]+"\" width=\""+larglong[0]+"\" height=\""+larglong[1]+"\">";
  	newHtmlLien+="<param name=\"movie\" value=\"/manage/core/1.3e/images_manage/players/player_flv.swf?flv=";
    newHtmlLien+=this.href+"&amp;width="+larglong[0]+"&amp;height="+larglong[1]+"\">";
    newHtmlLien+="<param name=\"wmode\" value=\"transparent\">";
  	newHtmlLien+="<a href=\""+this.href+"\" title=\""+tabalt[1]+"\" hreflang=\"fr\" class=\"LinkFile\">"+tabalt[1]+"</a></object></div></div>";
    $(this).replaceWith(newHtmlLien);
  });
});

