// JavaScript Document
function showLightbox() {
	document.getElementById('over').style.display='block';

	}
function hideLightbox() {
	document.getElementById('over').style.display='none';
	
	}