

 jQuery.noConflict();
 jQuery(document).ready(function() {
	jQuery("ul.gallery").prettyGallery({
			itemsPerPage : 3,
			animationSpeed : 'normal', /* fast/normal/slow */
			navigation : 'bottom',  /* top/bottom/both */
			of_label: ' von ', /* The content in the page "1 of 2" */
			previous_title_label: 'Zurück', /* The title of the previous link */
			next_title_label: 'Weiter', /* The title of the next link */
			previous_label: 'Zurück', /* The content of the previous link */
			next_label: 'Weiter' /* The content of the next link */
		});
		
	
		jQuery('ul.gallery a').lightBox({
			overlayBgColor: '#d4e2e8',
			imageLoading: 'fileadmin/templates/jquery-lightbox-0.5/images/lightbox-ico-loading.gif',
			imageBtnPrev: 'fileadmin/templates/jquery-lightbox-0.5/images/lightbox-btn-prev.gif',
			imageBtnNext: 'fileadmin/templates/jquery-lightbox-0.5/images/lightbox-btn-next.gif',
			imageBtnClose: 'fileadmin/templates/jquery-lightbox-0.5/images/lightbox-btn-close.gif',
			txtImage: 'Bild',
			txtOf: 'von'
		});


});

