
// CREATION D'UNE INSTANCE DU JWPLAYER (VIDEO) ----------

function createPlayer( obj ) {

	jwplayer( obj.div ).setup({
		flashplayer: "http://streaming.cndp.fr/swfs/jw/jwplayer_cndp.swf",
		streamer: 'rtmp://streaming.cndp.fr/vod/',
		file: obj.file,
		image: obj.image,
		width: 134,
		height: 100,
		controlbar: 'none',
		autostart: 'false',
		icons: 'false',
		volume: 0,
		displayclick: 'link',
		link: obj.link,
		linktarget: '_self'
	});
}
