
		$(document).ready(function() {
		
			$("a#image_zoom").fancybox();
			$("a#example1").fancybox();
			$.ajaxSetup ({
				// Disable caching of AJAX responses
				cache: false
			});
			
			$("a[rel=slide_group]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
			//fancy box display imgs with title inside
			
				$("a#example7").fancybox({
				'titlePosition'	: 'inside'
			});
		});

