

		$(document).ready(function() {
			/*
			*   Examples - images
			*/


			$(".foto a").fancybox({
				'titleShow'		: true,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'titlePosition' 	: 'inside',
				'titleFormat'		: function formatTitle(title, currentArray, currentIndex, currentOpts) {
    return '<div id="fancy-title">' + (title && title.length ? '<b>' + title + '</b>' : '' ) + '</div>';
}
				
			});
			
			
		});
		
		
