		$(document).ready(function() {

			$("a[rel=group_folio]").fancybox({  // using mouse scroll wheel
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
                'easingIn'      : 'easeOutBack', 
                'easingOut'     : 'easeInBack',
				'speedIn'		:	600, 
				'speedOut'		:	300, 
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (currentIndex + 1) + '|' + currentArray.length + (title.length ? '&nbsp;' + title : '') + '</span>';
				}
			});

			$("a[rel=group_image]").fancybox({  // using mouse scroll wheel
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
                'easingIn'      : 'easeOutBack', 
                'easingOut'     : 'easeInBack',
				'speedIn'		:	600, 
				'speedOut'		:	300, 
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">kitchen brew ' + (currentIndex + 1) + '|' + currentArray.length + (title.length ? '&nbsp;' + title : '') + '</span>';
				}
			});

		});

