// JavaScript Document
/*
flowplayer("player", "http://www.capesp.org.br/portal/public/tv/flowplayer-3.2.2.swf", {
		
		plugins:  {
		controls: {
			url: 'http://www.capesp.org.br/portal/public/tv/flowplayer.controls-3.1.5.swf',
			// tooltips configuration
			tooltips: {
			// enable english tooltips on all buttons
			buttons: true,
			// customized texts for buttons
			play: 'Play',
			pause: 'Pausar',
			fullscreen: 'Tele Inteira'
			},
				
			// background color for all tooltips
			tooltipColor: '#112233',
			// text color
			tooltipTextColor: '#8899ff' 
			}
		}, 
							
		// pause on first frame of the video
		clip: {
		autoPlay: true,
		autoBuffering: true
		}
						
});
*/
flowplayer("player", "http://www.capesp.org.br/portal/public/tv/flowplayer-3.1.5.swf", { 
    clip:  { 
		baseUrl: 'http://www.adailtonphp.com.br/fespesp/',
		subTitle: "TV CAPESP, Produções e Mídia em Serviço do Servidor Público",
        //autoPlay: true, 
		time: '30 sec',
        autoBuffering: true 
    } 
	
	, plugins: {            // load one or more plugins 
        controls: {            // load the controls plugin 
            url: 'http://www.capesp.org.br/portal/public/tv/flowplayer.controls-3.1.5.swf',    // always: where to find the Flash object 
            playlist: false,                // now the custom options of the Flash object 
            backgroundColor: '#aedaff', 
            tooltips: {                // this plugin object exposes a 'tooltips' object 
                buttons: true, 
                fullscreen: 'Click Tela Inteira' 
            } 
        } 
    }, 
}); 

