
// CMS loeschen, aktivieren usw.
function cmsinfo(link,btext) {
	Check = confirm(btext);
	if(Check == false) {
		return ;
	} else {
		window.open(link,'_top') ;
	}
}

// Galerie
jQuery(document).ready(function() {
	$("a[rel=group]").fancybox({
		'titleShow' : true,
		'titlePosition' : 'over',
		'titleFormat' : function(title, currentArray, currentIndex, currentOpts) {
		    return '<span id="fancybox-title-over">Bild ' +  (currentIndex + 1) + ' von ' + currentArray.length + ' <br /> ' + title + '</span>';
		}
	});
});
