 $f("fms", "http://www.amazingfacts.org/resources/flowplayer/flowplayer.commercial.swf", {
 
        key: '#@84b53492067a456e4a1',

        clip: {
			autoPlay: false,
			
            // track start event for this clip         
            onStart: function(clip) {             
                google._trackEvent("Videos", "Play", "StepFast");         
            }, 
             
            // track pause event for this clip. time (in seconds) is also tracked        
            onPause: function(clip) {             
                google._trackEvent("Videos", "Pause", "StepFast", parseInt(this.getTime()));         
            },

			onResume: function(clip) {
				google._trackEvent("Videos", "Resume", "StepFast", parseInt(this.getTime()));
			},
			
			onSeek: function(clip) {
				google._trackEvent("Videos", "Seek", "StepFast", parseInt(this.getTime()));
			},                 
             
            // track stop event for this clip. time is also tracked         
            onStop: function(clip) {             
                google._trackEvent("Videos", "Stop", "StepFast", parseInt(this.getTime())); 
            },                  
             
            // track finish event for this clip         
            onFinish: function(clip) {             
                google._trackEvent("Videos", "Finish", "StepFast");         
            },
            
			provider: 'pseudo'
        },
				
		// context menu
        contextMenu: [
            {'Order StepFast': function() {
	            location.href = 'http://www.afbookstore.com/stepfast';
            }},
            
            {'Contact Us': function() {
	            location.href = '/Contact-Us.aspx';
            }}
        ],

        // streaming plugins are configured under the plugins node
        plugins: {
			rtmp: {
				url: 'http://www.amazingfacts.org/resources/flowplayer/plugins/flowplayer.rtmp.swf',
				netConnectionUrl: 'rtmp://bitcast-s-a.bitgravity.com/cdn'
			}, 
			
			pseudo: {
				url: 'http://www.amazingfacts.org/resources/flowplayer/plugins/flowplayer.pseudostreaming.swf',
				queryString: escape('?starttime=${start}')
			},
			
            controls: { 
                stop: false,
				time: false
            } 
        }
    }).ipad();
