var flowplayerConfigForMusiknord = { 
	
	clip: {  
		
	//	provider: 'lighttpd', 
		
	    autoPlay: true,
		scaling: 'fit',
		accelerated: true,
		// track start event for this clip         
		onStart: function(clip) {             
			pageTracker._trackEvent("Videos", "Play", clip.url);         
		}, 
		// track pause event for this clip. time (in seconds) is also tracked        
		onPause: function(clip) {             
			pageTracker._trackEvent("Videos", "Pause", clip.url, parseInt(this.getTime()));         
		},                 
		// track stop event for this clip. time is also tracked         
		onStop: function(clip) {             
			pageTracker._trackEvent("Videos", "Stop", clip.url, parseInt(this.getTime())); 
		},                  
		// track finish event for this clip         
		onFinish: function(clip) {             
			pageTracker._trackEvent("Videos", "Finish", clip.url);         
		}//,
		
		//playlist: [
		//	{url: 'http://blip.tv/file/get/KimAronson-TwentySeconds4461.flv', duration: 2, position: 0}
		//]	
	
	}, 
	canvas: {
		//height: '640',
		//width:  '360',
	    backgroundColor: '#333333', 
	    backgroundGradient: 'none'
	    // and "curved" corners 
	    //borderRadius: 20 
	},
	plugins: { 
		
		//Streaming
	//	lighttpd: { 
    //        url: 'flowplayer.pseudostreaming-3.1.3.swf' 
    //    },
		
		/*
		captions: { 
            url: 'flowplayer.captions-3.1.4.swf', 

            // pointer to a content plugin (see below) 
            captionTarget: 'content' 
        }, 

        // configure a content plugin to look good for our purpose 
        content: { 
            url:'flowplayer.content-3.1.0.swf', 
            bottom: 25, 
            width: '80%', 
            height:'100%', 
            backgroundColor: 'transparent', 
            backgroundGradient: 'none', 
            borderRadius: 4, 
            border: 0, 

            style: { 
                'body': { 
                fontSize: '14', 
                fontFamily: 'Arial', 
                textAlign: 'center', 
                color: '#ffffff'
                } 
            }
        },
		*/
		
	    controls: { 
			url:'flowplayer.controls-3.1.5.swf',
	        // display properties 
	        bottom:0, 
	        height:25, 
	        zindex:1, 
	        backgroundColor: 'transparent', 
	        backgroundGradient: [0], 
	        // controlbar specific configuration  
			durationColor: '#C0C0C0',
			timeColor: '#000000',
			progressColor: '#10343C',
			progressGradient: [0.3],
			bufferColor: '#10343C',
			bufferGradient: [0.3],
			sliderColor: '#000000',
			sliderGradient: [0.1],
	        autoHide: 'always', 
			hideDelay: 2000,
	        // which buttons are visible and which not ? 
	        play:true,      
	        volume:false, 
	        mute:false,  
	        time:true,  
	        stop:false, 
	        playlist:false,  
	        fullscreen:true, 

	        // scrubber is a well known nickname to the timeline/playhead combination 
	        scrubber: true
	    } 
	},
	screen: { 
	    bottom:0,
		zindex:99
	}	
}