$(document).ready(function(){
  $('body').bind('flashLoad', function(){

    var v = document.createElement("video");
    if ( v.play && $('div.html5-sondermodelle').length > 0) { // das checken wir hier für 360 grad z.B.
      $('a.flash_sondermodelle').replaceWith($('div.html5-sondermodelle').show());
    } else {
      $('a.flash_sondermodelle').flash({
        caption:        false,
        background:     'd8dcdf',
        width:          904,
        height:         387,
        version: 9    ,
        fallbackdiv:    '#flashFallbackDiv',
        params: {
          menu: 'no',
          wmode: 'opaque'
        }
      });
    }
  });
});


