$(document).ready(function() {
$('#thecontent-inner.photos a').addClass('various1');
});
		$(document).ready(function() {
			/*
			*   Examples - various
			*/
			$(".various1").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			
		});
		
		
