$(document).ready(function() {

	
	/* Using custom settings */
	
	$("a.inline").fancybox({
		'hideOnContentClick': false,
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'autoScale'		:   true,
		'margin'		:   100, 
		'showNavArrows' :   false 
		
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false		
	});
	
	
	
	   $("a.iframeStaffies").fancybox({
	    'width'    	         : 600,
		'height'             : 650,
	    'overlayOpacity'     :  '0.4',
	    'overlayColor'       :  '#000',
		'hideOnContentClick' :   false,
	    'autoScale'          :   false,
	    'transitionIn'       :   'elastic',
	    'transitionOut'  :   'elastic',
		'type'           :   'iframe'
	});
	
	
});
