window.addEvent('domready', function() {

    $$('img.flowplayer').each(function(item, index) {
        //img tag vervangen door flowplayer

        var newElement = new Element('a', { id: 'flowplayer' + index, href: item.src });
        newElement.replaces(item);
        flowplayer(newElement, { src: "/Files/System/flash/flowplayer-3.1.1.swf", wmode: 'opaque', height: item.height, width: item.width },
      { plugins: {
          controls: {
              playlist: false,
              //backgroundColor: '#000000',
              autoHide: 'always',
              backgroundGradient: 'none',
              backgroundColor: 'transparent',
              buttonColor: '#222222',
              progressColor: '#666666',
              bufferColor: '#444444',
              height: '20px'
          }
      },
          clip: {
              autoBuffering: true,
              accelerated: true
          },
          onLoad: function() { this.unmute(); }
      }

      );

    });

});

