 $f("fms", "/flowplayer/flowplayer.commercial-3.1.4.swf", {
 
	key: '#@dab19f1a38ba8ec2f53',

	clip: {
		live: true,
		
		// track start event for this clip         
		onStart: function(clip) {             
			google._trackEvent("Videos", "Play", "Streams of Light Live Stream - High");         
		}, 
		 
		// track pause event for this clip. time (in seconds) is also tracked        
		onPause: function(clip) {             
			google._trackEvent("Videos", "Pause", "Streams of Light Live Stream - High");         
		},

		onResume: function(clip) {
			google._trackEvent("Videos", "Resume", "Streams of Light Live Stream - High");
		},
		
		onSeek: function(clip) {
			google._trackEvent("Videos", "Seek", "Streams of Light Live Stream - High");
		},                 
		 
		// track stop event for this clip. time is also tracked         
		onStop: function(clip) {             
			google._trackEvent("Videos", "Stop", "Streams of Light Live Stream - High"); 
		},                  
		 
		// track finish event for this clip         
		onFinish: function(clip) {             
			google._trackEvent("Videos", "Finish", "Streams of Light Live Stream - High");         
		},
		
		provider: "rtmp"
	},
			
	// streaming plugins are configured under the plugins node
	plugins: {
		rtmp: {
			url: '/flowplayer/flowplayer.rtmp-3.1.3.swf',
			netConnectionUrl: 'rtmp://live01.lax.netdna.com/live.amazingfacts'
		},
		
		controls: { 
			stop: true     
		} 
	}
});
	
	
// get the links and alter their click behaviour
var els=['high','low']
for (var i_tem = 0; i_tem < els.length; i_tem++) {
	if (document.getElementById(els[i_tem]) != null) 
	{
		document.getElementById(els[i_tem]).onclick = function() {
				
			// play the clip specified in href- attribute with Flowplayer
			$f().play(this.getAttribute("href", 2));
			
			// by returning false normal link behaviour is skipped
			return false;
		}
	}
}
