$(document).ready(function() {
	$("a").each(
		function() {
			if($(this).attr("href").substring(0, 4) == "http") {
				$(this).attr("target", "_blank");
			}
		}
	);
	/* This is basic - uses default settings */
	
	$("a.fancybox").fancybox({
			'titlePosition' 	: 'over',
			'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Bild ' +  (currentIndex + 1) + ' von ' + currentArray.length + '<br />' + title + '</span>';
			}
		});
});

