if ($f) {
	$f("player", {src:contextPath+"/swf/flowplayer-3.1.1.swf", wmode:'transparent'}, {

		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()));
			},                
			
			// 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);        
			}             
		}, 
        plugins: {
			controls: null
		}
	
	});
	
	$f("player_2", {src:contextPath+"/swf/flowplayer-3.1.1.swf", wmode:'transparent'}, {

		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()));
			},                
			
			// 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);        
			}             
		},
        plugins: {
			controls: null
		}
	
	});
}