// FancyBox Lazy Loader
$(document).ready(function() {

	var $fancyboxes = $('a.actionIFrame');

	if ($fancyboxes.length) {
		$('<link rel="stylesheet" type="text/css" href="/globalAssets/jquery/fancybox/jquery.fancybox.css" />')
			.appendTo('head');
	
		$.ajax({
			type:     'GET',
			dataType: 'script',
			url:      '/globalAssets/jquery/fancybox/jquery.fancybox.pack.js',
			cache:    true,
			success:  function() {
				$fancyboxes.fancybox({
					'width'				: 700,
					'height'			: '85%',
					'autoScale'			: false,
					'margin'			: 5,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe',
					'centerOnScroll'	: false,
					'padding'			: 0
				});
			}
		});
	}
});
