/* Author: Thomas Krüger, atnexxt.de */
$(function($) {

	// open external links in new window
	$('a[href*="http://"]:not([href*="' + location.hostname + '"])').attr('target', '_blank').click(function() {
		pageTracker._trackPageview('/out/' + $(this).attr('href'));
	});

	// fancybox
	$('a[rel=lightbox]').fancybox({
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'over',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-over">Bild ' + (currentIndex + 1) + ' von ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
		}
	});

});(jQuery);

























