function openLightBox(id) {
	if (jwplayer("pp_" + id)!=null) jwplayer("pp_" + id).stop(); // Previewplayer stoppen
	// alert('Request Open Lightbox Player ' + id);
	jQuery("#lbp_" + id).overlay({
		top: 100, // Abstand vom oberen Rand der Seite
		mask: {
			color: '#000',
			loadSpeed: 200,
			opacity: 0.5
		}, // Formatierung des Overlays
		closeOnClick: true, // Klick neben das Overlay schliesst den Player
		load: true,
		onClose: function() {
			jwplayer("lb_" + id).stop();
	   }
	});
	jQuery("#lbp_" + id).data('overlay').load();
	eval("setupLb_" + id + "()");
}

