// JavaScript Document

window.onload = function() {
	loadVideoBox();
}

function loadVideoBox() {
	$('.cdBox').nyroModal( {
		width: '600',
		height: '600',
		closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="close">&#9734;</a>'
	} );
	$('.videoBox').nyroModal( {
		width: '800',
		height: '600',
		closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="close">&#9734;</a>'
	} );
	$('.imageBox').nyroModal( {
		width: '600',
		height: '800',
		closeButton: '<a href="#" class="nyroModalClose" id="closeBut" title="close">&#9734;</a>'
	} );
}
