// JavaScript Document

jQuery(document).ready(function(jQuery) {
	/**
	 *	
	 */
	jQuery('a.lightbox').each(function () { 
		if( jQuery(this).attr('href') == '' ) {
			jQuery(this).attr('href', jQuery('img:first', this).attr('src'));
		}
	});	
	
	/**
	 *	Add class to last navigation item
	 */
	jQuery('a.lightbox').fancybox({
		'titleShow'			: true,
		'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>';
		}
	});

});
