var conf = { 
     
    // default clip configuration 
    defaults: { 
         
        autoPlay: true, 
        autoBuffering: true, 
     
        // functions are also supported 
        onBegin: function() { 
             
            // make controlbar visible in 4000 seconds 
            this.getControls().fadeIn(4000); 
        },
	onBeforeFinish: function ()  { return false; },
	    canvas: { 
		//backgroundColor:'transparent'
		backgroundColor:'#ffffff'
	    },
	controls:  { 
				playlist: false, 
				autoHide: 'always', 
		                hideDelay: 500, 
				sliderGradient: 'none',
		                bufferGradient: 'none',
		                progressGradient: 'none',
		                volumeSliderGradient: 'none',
		                backgroundGradient: 'none', 
		                backgroundColor: 'transparent', 
		           
		                buttonOverColor: '#cccccc',
		                buttonColor: '#ffffff',

		                durationColor: '#0000FF',
		                tooltipColor: '#bbbbbb',
		                tooltipPacity:'0',
		                tooltipTextColor: '#555555',
		                
		                volumeSliderColor: '#ffffff', 
					    all:false, 
					    scrubber:true,
					    sliderColor: '#aaaaaa',
					    progressColor: '#ffffff',
					    bufferColor: '#cccccc',
					    play: false,
					    volume:true,
					    mute:true,
					    opacity:0.45
					    
		},
	content: { 
		             
		            // the only required property 
		            url: 'http://3d22/fido.se/js/flowplayer.content-3.2.2.swf', 
		             
		            // some display properties 
		            height: 30, 
		            padding:0, 
		            backgroundColor: 'transparent',
		            borderRadius: 0,
		            borderWidth: 0,
		            opacity: 0.75, 
		            backgroundGradient: [0.0, 0.0, 0.0],
		             

		            /*** content plugin specific properties ***/ 
		             
		            // fetch the actual HTML inside a DIV element on the page 
		            //html: '<p>Featured - RWE</p>' ,
		             
		            // some styling for the content 
		            style: {p: {fontSize: 16}}             
	}
         
    }
     
}
