/**
 * @version 200907082129
 * @author  Rolf den Hartog - rolf@rolfdenhartog.nl
 */

$(function(){
	// enable player
    var so = new SWFObject( '/static/swf/flvplayer.swf', 'playlist', '576', '400', '7' );
    so.addVariable( 'file', $('#video-src').attr('href') );
    //so.addVariable( 'backcolor', '0xe9eff3' );
    //so.addVariable( 'frontcolor', '0x146698' );
    //so.addVariable( 'lightcolor', '0xf75a3f' );
    //so.addVariable( 'displayheight', '0' );
    so.addVariable( 'width', '576' );
    so.addVariable( 'height', '400' );
    so.write( 'player' );	
});
