/* from sample page fancybox*/
$(document).ready(function() {
			/*
			*   Examples - images
			*/

			$("a.single_image").fancybox({
				'opacity'		: true,
				'overlayShow'	: false,
				'transitionIn'	: 'elastic',
				'titlePosition'	: 'inside',
				'transitionOut'	: 'none'
			});

			$("a[rel=images_group]").fancybox({
				'opacity'		    : true,
				'overlayShow'	    : false,
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'inside',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">' + (title.length ? ' &nbsp; ' + title : '') + (' &nbsp; ') + (currentIndex + 1) + ' / ' + currentArray.length
					+ '</span>';
				}
			});

			$(".hyperlink").fancybox({
				'opacity'		    : true,
				'overlayShow'	    : false,
				'width'				: '75%',
				'height'			: '75%',
				'autoScale'			: 'true',
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'inside',
				'type'				: 'iframe'
			});

		});
