﻿window.onload = function() {
	initLightbox();
	if (document.getElementById('promptBox')) {
		var promptBox = document.getElementById('promptBox');
		promptBox.onmouseover = function() { openPrompt(); }
		promptBox.onmouseout = function() { closePrompt(); } 
	}
}

function openPrompt(){
	var promptBox = document.getElementById('promptBox');
	promptBox.style.left = 0 + 'px';
}

function closePrompt(){
	var promptBox = document.getElementById('promptBox');
	promptBox.style.left = -145 + 'px';
}