$(document).ready(function() {
	$f("a.player", "/site_media/js/flowplayer/flowplayer-3.1.1.swf", {

	// controlbar is initially hidden
	plugins: {
		controls:  {
			autoHide: 'always',
            backgroundGradient: 'none', 
            backgroundColor: 'transparent', 
            scrubber:true 
		}
	},

	canvas: { 
        backgroundColor:'#18b9ed' 
    }, 
	
	// properties that are common to both clips in the playlist
	clip: {
		baseUrl: '/site_media/videos/'
	},
	
	// playlist with two entries
	playlist: [
	
		// user is forced to see this entry. pause action is disabled
		{
			url: 'intro.flv'
		},
		
	]	

	});	

});


