/*  FLOWPLAYER SET UP  */

	// wait for the DOM to load using jQuery
	$(function() {
	
		// setup player without "internal" playlists
		$f("player2", "http://fin-de-siecle.com/video/flowplayer-3.1.5.swf", {
			clip: {baseUrl: 'http://fin-de-siecle.com/'}, 
			

			// show playlist buttons in controlbar
			plugins: {
				controls: { 
					url: 'http://fin-de-siecle.com/scripts/flowplayer.controls-3.1.5.swf', 
					
					// display properties 
					backgroundColor: '#000000', 
					backgroundGradient: 'low', 
					bufferColor: '#999999',
					progressColor: '#555555',
					timeColor: '#ffff00',
					buttonColor: '#999999',
					buttonOverColor: '#cccccc',
			 
					// controlbar-specific configuration 
					fontColor: '#ffffff', 
					timeFontColor: '#333333', 
					autoHide: 'never', 
						 
					// which buttons are visible and which are not? 
					play:true, 
					volume:true, 
					mute:true, 
					time:true, 
					stop:false, 
					playlist:false, 
					fullscreen:true, 
			 
					// scrubber is a well-known nickname for the timeline/playhead combination 
					scrubber: true 
				} 
			}


		}).playlist(".clips", {loop:false});
						
	})		
