<!--
function preloadPopups()	{
Image1	=	new Image(300,270)
Image1.src = "images/funhouse/photos/pop_ups/blg_pic1_lg.jpg"
Image2	=	new Image(300,270)
Image2.src = "images/funhouse/photos/pop_ups/blg_pic2_lg.jpg"
Image3	=	new Image(300,270)
Image3.src = "images/funhouse/photos/pop_ups/blg_pic3_lg.jpg"
Image4	=	new Image(300,270)
Image4.src = "images/funhouse/photos/pop_ups/blg_pic4_lg.jpg"
Image5	=	new Image(300,270)
Image5.src = "images/funhouse/photos/pop_ups/blg_pic5_lg.jpg"
Image6	=	new Image(300,270)
Image6.src = "images/funhouse/photos/pop_ups/blg_pic6_lg.jpg"
Image7	=	new Image(300,270)
Image7.src = "images/funhouse/photos/pop_ups/blg_pic7_lg.jpg"
Image8	=	new Image(300,270)
Image8.src = "images/funhouse/photos/pop_ups/blg_pic8_lg.jpg"
Image9	=	new Image(300,270)
Image9.src = "images/funhouse/photos/pop_ups/blg_pic9_lg.jpg"
Image10	=	new Image(300,270)
Image10.src = "images/funhouse/photos/pop_ups/blg_pic10_lg.jpg"

}


function turnOnPop(imgName, imgText, xTop)	{
	document.getElementById('galleryPop').style.display = '';
	document.getElementById('galleryPop').style.top = xTop + 'px';
	document.images['galleryImg'].src = "images/funhouse/photos/pop_ups/blg_" + imgName + "_lg.jpg"
	document.getElementById('galleryText').innerHTML =  imgText;
}

function turnOffPop()	{
	document.getElementById('galleryPop').style.display = 'none';
}
//-->