function openLightBox(infoID) {
	//set how far from the top of the screen to display the lightbox
	//var verticaloffset = 100;
	var element = document.getElementById('div'+infoID);
	//element.style.top =  verticaloffset + 'px';
	//Use scriptaculous blind effect to show the lightbox, change effect to what you feel looks best
	new Effect.BlindDown('div'+infoID);
	//Fade in the background to a 0.7 opacity
   	new Effect.toggle('fade', 'appear', {duration: 1.0, from: 0.0, to: 0.7});
}

function closeLightBox(infoID) {
    //Reverse the effects to hide the lightbox
	new Effect.BlindUp('div'+infoID);
	new Effect.toggle('fade', 'appear', {duration: 1.0, from: 0.7, to: 0.0});
}
