var FLVVideo = new Class({
	initialize: function(pathFlow, pathFlv, targetDiv) {
		$(targetDiv).grab(
			new FlowPlayerSwiff(pathFlow, {
				id: 'FLVVideo',
				width: 300,
				height: 225,
				vars: {
					config: {
						videoFile: pathFlv,
						autoPlay: false, 
						autoBuffering: 'false', 
						showOnLoadBegin: 'true', 
						controlEnabled: 'false',
						showMenu: 'false'
					}
				}
			})
		);
	}
});