// JavaScript Document
$(document).ready(function() {
	
	/* Apply fancybox to multiple items */
	$("a.modal_vid").fancybox({
		'type'				:	'iframe',
		'overlayColor'		:	'#000',
		'width'				:	640,
		'height'			:	360

	});
	
	/* Apply fancybox to ENG version (different video player needs extra height) */
	$("a.modal_vid2").fancybox({
		'type'				:	'iframe',
		'overlayColor'		:	'#000',
		'width'				:	640,
		'height'			:	422

	});
	
	/* Apply fancybox to iPad App (different video player needs extra height) */
	$("a.modal_vid_ipad").fancybox({
		'type'				:	'iframe',
		'overlayColor'		:	'#000',
		'width'				:	657,
		'height'			:	377
	});
	
	$("a.modal_vid_640").fancybox({
		'type'				:	'iframe',
		'overlayColor'		:	'#000',
		'width'				:	658,
		'height'			:	378
	});
	
	$("a.modal").fancybox({
		'type'				:	'iframe',
		'overlayColor'		:	'#000',
		'width'				:	680,
		'height'			:	430
	});
	
});
