		$(document).ready(function() {
		
			$("a[rel=inner_news]").fancybox({
				'transitionIn'		: 'none', /* animations: fade, elastic, none */
				'transitionOut'		: 'none', /* animations: fade, elastic, none */
				'titlePosition' 	: 'over', /* outside, inside, over  */
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Photo ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});


			$("a[rel=inner_cert]").fancybox({
				'transitionIn'		: 'none', /* animations: fade, elastic, none */
				'transitionOut'		: 'none', /* animations: fade, elastic, none */
				'titlePosition' 	: 'over', /* outside, inside, over  */
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">'+ title + '</span>';
				}
			});			
			

		});

