$(document).ready(function(){        
  $('body').bind('flashLoad', function() {
    var v = document.createElement("video");
    if ( v.play ) {
      $('a.flash').each(function () {
        /* das einkommentierte <video> tag auslesen und statt dem flash-a schreiben */
        var vi = $(this).find(".html5-video");
        if (vi.length == 1) {
          $(this).replaceWith(
            vi.html().replace(/<!--((.|\n|\r)*)-->/,"$1")
          );
        }
      });
    }
  
    $('a.flash').flash({
      params: {
        menu: 'no',
        wmode: 'opaque',
        allowScriptAccess: 'sameDomain'
      }
    });

  });
});
