
	function pictureRoll (containerID, pictureID) {
		inhalt = $('#' + containerID).html();
		$('#image_block').html('<a href="#" onclick="return showLight(' + pictureID + ')">' + inhalt + '</a>');
		return false;
	}

	function showLight(pictureID) {
		jQuery.slimbox(bilder, pictureID, {loop: true});
		return false;
	}
	
	function rebuildPictureArray() {
		for (var i = 0; i < bilder.length; i++) {
			bilder[i] = new Array('uploads/tx_templavoila/' + bilder[i]);
		}
	}

