﻿var do_init = true;

var Craftsmanship = {
	init: function () {
		//$('#divProvenanceText').jScrollPane();
		//$('#divTraditionText').jScrollPane();

		var playVideoButton = $('#btnPlayCraftsmanshipVideo');
		var videoDiv = $('#divCraftsmanshipVideoModal');

		playVideoButton.css('cursor', 'pointer').click(function (e) {
			Craftsmanship.playVideo(e, videoDiv);
		});
	},

	playVideo: function (e, divId) {
		e.preventDefault()

		var divModal = divId;
		var mHeight = divModal.height();
		var mWidth = divModal.width();

		$.blockUI({
			message: divModal,
			css: {
				top: ($(window).height() - mHeight) / 2 + 'px',
				left: ($(window).width() - mWidth) / 2 + 'px',
				width: mWidth + 'px',
				height: mHeight + 'px',
				border: '0',
				cursor: 'pointer',
				background: 'none'
			},
			overlayCSS: {
				backgroundColor: '#353535',
				cursor: 'pointer'
			}
		});

		$('.closeModalBtn').css("cursor", "pointer").click(function () {
			$.unblockUI();
		});

		return false;
	}
}


$(document).ready(function () {
	if (do_init)
		Craftsmanship.init();
});
