function doVideo() {
	ps = document.getElementsByTagName('P');
	if (ps && ps.length > 0) {
		for (pi = 0; pi < ps.length; pi++) {
			if (ps[pi].id.substring(0, 6) == 'video_') {
				shoframe = ps[pi].className.split(';');
				if (shoframe.length > 1) {
					ps[pi].className = shoframe[0];
					shoframe = shoframe[1] + '/';
				} else {
					shoframe = '';
				}
				flowplayer(ps[pi].id, "/swf/flowplayer-3.0.5.swf", {
				clip: { 
					baseUrl: 'http://carmant.de/video/',
					streamingServer: 'lighttpd',
					scaling: 'fit',
					accelerated: true
				},
				playlist: [
					{ url: '/images/video/' + shoframe + ps[pi].className + '.jpg' },
					{ title: ps[pi].className, url: ps[pi].className, autoBuffering: false, autoPlay: false }
				],
				plugins: {
					controls: {
						url: '/swf/flowplayer.controls-3.0.3.swf',
						backgroundColor: '#000000',
						backgroundGradient: 'low',
						borderRadius: 23,
						autoHide: 'always',
						play:true,
						volume:true,
						mute:true,
						time:true,
						stop:false,
						playlist:false,
						fullscreen:true,
						scrubber: true,
						playlist:true
					}
				}});
			}
		}
	}
	return true;
}
