jQuery(document).ready(function($) {
	var baseWidth = 1280,
		baseHeight = 720,
		bodyWidth = $(document.body).innerWidth(),
		bodyHeight = $(document.body).innerHeight(),
		iframeWidth = baseWidth,
		iframeHeight = baseHeight;
	if(bodyWidth - 100 < iframeWidth) {
		iframeWidth = bodyWidth - 100;
		iframeHeight = (baseHeight / baseWidth) * (bodyWidth - 100);
	}
	if(bodyHeight - 100 < iframeHeight) {
		iframeHeight = bodyHeight - 100;
		iframeWidth = (baseWidth / baseHeight) * (bodyHeight - 100);
	}
	$('#menu-watch-motion').fancybox({
		type : 'iframe',
		padding : 0,
		width : iframeWidth,
		height : iframeHeight
	});
	$('#watch-motion a').fancybox({
		type : 'iframe',
		padding : 0,
		width : iframeWidth,
		height : iframeHeight
	});
});
