 $f("fms", "http://www.amazingfacts.org/resources/flowplayercore/flowplayer.commercial-3.1.4.swf", {
 
        key: '#@4e9151ca69831e16e49',

        clip: {
            // track start event for this clip         
            onStart: function(clip) {             
                google._trackEvent("Videos", "Play", clip.url);         
            }, 
             
            // track pause event for this clip. time (in seconds) is also tracked        
            onPause: function(clip) {             
                google._trackEvent("Videos", "Pause", clip.url, parseInt(this.getTime()));         
            },

			onResume: function(clip) {
				google._trackEvent("Videos", "Resume", clip.url, parseInt(this.getTime()));
			},
			
			onSeek: function(clip) {
				google._trackEvent("Videos", "Seek", clip.url, parseInt(this.getTime()));
			},                 
             
            // track stop event for this clip. time is also tracked         
            onStop: function(clip) {             
                google._trackEvent("Videos", "Stop", clip.url, parseInt(this.getTime())); 
            },                  
             
            // track finish event for this clip         
            onFinish: function(clip) {             
                google._trackEvent("Videos", "Finish", clip.url);         
            },
            
			provider: 'pseudo'
        },
				
		// context menu
        contextMenu: [
            {'Get the DVD': function() {
	            location.href = 'https://www.amazingfacts.org/Store/PreOrders/CosmicConflictPreorders/tabid/141/Default.aspx';
            }},
            
            {'Visit our blog': function() {
	            location.href = '/AbouttheDVD/Blog/tabid/188/Default.aspx';
            }},
            {'Contact Us': function() {
	            location.href = '/ContactUs/tabid/191/Default.aspx';
            }}
        ],

        // streaming plugins are configured under the plugins node
        plugins: {
			rtmp: {
				url: 'http://www.amazingfacts.org/resources/flowplayercore/flowplayer.rtmp-3.1.3.swf',
				netConnectionUrl: 'rtmp://vod01.netdna.com/play'
			}, 
			
			pseudo: {
				url: 'http://www.amazingfacts.org/resources/flowplayercore/flowplayer.pseudostreaming-3.1.3.swf'
			},
			
            controls: { 
                stop: true     
            } 
        }
    });