// JavaScript Document
function player_init() {
	
		if ($('#videoplayer0').length) {
		
			// Flow Player init
			flowplayer("videoplayer0", "/materials/flowplayer-3.2.5.swf",{
				clip: {
					// these two configuration variables does the trick
					autoPlay: false, 
					autoBuffering: true // <- do not place a comma here  
				}
			});
		}

		if ($('#videoplayer').length) {
		
			// Flow Player init
			flowplayer("videoplayer", "/materials/flowplayer-3.2.5.swf",{
				clip: {
					// these two configuration variables does the trick
					autoPlay: false, 
					autoBuffering: true // <- do not place a comma here  
				}
			});
		}

}
