// JavaScript Document
function closeLightBox()
{
	document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none';
}
function showLightBox()
{
	document.getElementById('light').style.display='block';document.getElementById('fade').style.display='block';
}
function startLightBoxTimer()
{
	showLightBox();
	window.setTimeout("closeLightBox();", 10000); 
}
