$(document).ready(function() {

	$("#fancyframe").fancybox({
		'width'				: 870,
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});
	
		$("#fancyframe2").fancybox({
		'width'				: 870,
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});
		
	$("#fancyframe3").fancybox({
		'width'				: 870,
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});
	
		$("#fancyframeagb").fancybox({
		'width'				: 690,
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'type'				: 'iframe'
	});

	$("#updateinfo").fancybox({
		'width'				: 870,
		'height'			: '90%',
		'autoScale'			: false,
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'speedIn'			:	500, 
		'speedOut'			:	200,
		'titlePosition'		:	'outside', // 'outside', 'inside' or 'over'
		'type'				: 'iframe'
	});

	/* This is basic - uses default settings */
	$("a#single_image").fancybox({
		'hideOnContentClick':	true,
		'autoScale'			:	false,
	//	'titlePosition'		:	'outside',	// 'outside', 'inside' or 'over'
		'titleShow'			:	true
	});

	$("a.grouped_elements").fancybox({
		'hideOnContentClick':	true,
		'autoScale'			:	false,
		'titleShow'			:	true,
		'transitionIn'		:	'fade',	// 'elastic', 'fade' or 'none'
		'transitionOut'		:	'fade',	// 'elastic', 'fade' or 'none'
		'speedIn'			:	500, 
		'speedOut'			:	200,
		'titlePosition'		:	'inside',	// 'outside', 'inside' or 'over'
		'overlayColor'		:	'#999'
	});
	
		$("a.grouped_elements2").fancybox({
		'hideOnContentClick':	true,
		'autoScale'			:	false,
		'titleShow'			:	true,
		'transitionIn'		:	'fade',	// 'elastic', 'fade' or 'none'
		'transitionOut'		:	'fade',	// 'elastic', 'fade' or 'none'
		'speedIn'			:	500, 
		'speedOut'			:	200,
		'titlePosition'		:	'outside',	// 'outside', 'inside' or 'over'
		'overlayColor'		:	'#999'
	});

	/* Using custom settings */
	
	$("a#inline").fancybox({
		'hideOnContentClick':	true,
		'autoScale'			:	false,
		'titlePosition'		:	'inside',	// 'outside', 'inside' or 'over'
		'transitionIn'		:	'fade',	// 'elastic', 'fade' or 'none'
		'transitionOut'		:	'fade',	// 'elastic', 'fade' or 'none'
		'speedIn'			:	500, 
		'speedOut'			:	500,
		'overlayOpacity'	:	0.3,
		'overlayColor'		:	'#999'
	});

	/* Apply fancybox to multiple items */
	
	$("a.group").fancybox({
		'hideOnContentClick':	true,
		'autoScale'			:	false,
		'titlePosition'		:	'inside',	// 'outside', 'inside' or 'over'
		'transitionIn'		:	'fade',	// 'elastic', 'fade' or 'none'
		'transitionOut'		:	'fade',	// 'elastic', 'fade' or 'none'
		'speedIn'			:	500, 
		'speedOut'			:	500,
		'overlayOpacity'	:	0.9,
		'overlayColor'		:	'#999'
	});
	
});

