$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#image").fancybox({
                'type'         : 'image'
        });
	
	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick': true
	});

	$("a[rel=group]").fancybox({
                'type'                  : 'image',
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'over',
		'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
                  return '<div id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</div>';
		}
	});


	$("a.iframe").fancybox({
		'width'				: '100%',
		'height'			: '100%',
	        'autoScale'     	: true,
	        'transitionIn'		: 'none',
		'transitionOut'		: 'none',
	        'type'			: 'iframe'
	});

});
