function formatTitle(title, currentArray, currentIndex, currentOpts) {
    if (title && title.length) {
        var caption = title.replace(/\(Bild:\s(.*)\)/g, '<span class="bildQuelle">(Bild:&nbsp;$1)<\/span>');
        return '<p class="bildLegende">' + caption + '</p>';
    }
    return '';
}

jQuery(document).ready(function() {
    jQuery("a.zoomableImg").fancybox({
        'titlePosition' : 'inside',
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'titleFormat'   : formatTitle
    });

    jQuery("#boxartikelsenden").fancybox({
        'titlePosition' : 'inside',
        'titleShow'     : false,
        'autoScale'     : false,
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
	'autoDimensions': false,
	'width'			: 500,
	'height'		: 450
    });
});

