/*
  Javascript to init and configure OIPlayer.
  
  @author: André van Toly
  @version: '$Id: play.js 41510 2010-03-18 13:20:29Z andre $'
  @changes: moved all oiplayer stuff to one directory
*/

$(document).ready(function() {
    $('body.oiplayer-example').oiplayer({
        server : 'http://www.openimages.eu', /* msie (or windows java) has issues with just a dir */
        jar : '/oiplayer/cortado-ovt-stripped-wm_r38710.jar',
        flash : '/oiplayer/plugins/flowplayer-3.1.5.swf',
        controls : 'top'
    });
});

