// JavaScript Document


// BEGIN LIGHTBOX

var mainHeight;

onload = function() {
	mainHeight = document.getElementById("main-container").offsetHeight;
}

function showLightbox() {
	document.getElementById("lightbox-container").style.display = "block";
	document.getElementById("lightbox-container").style.height = String(mainHeight) + "px";
}

// END LIGHTBOX

