function mover_imgThumb(o)
{
	o.style.cursor = "hand";
	window.status="Click to display picture";
	//return true;
}
function mout_imgThumb(o)
{
	o.style.cursor = "auto";
	window.status="";
}
function showEnlarge(img)
{
	window.open("enlargeme.htm?e=" + img, "bigphoto", "location=0,menubar=0,height=30,width=30");
}
function loadCaption()
{
	var spanCollections = document.all.tags("span");
	var imgCollections = document.images;
	var imgColSize = imgCollections.length;
	var imgsrc;
	var upperbound;
	var caption;
	var j;
	//alert("imgColSize=" + imgColSize);
	//alert(spanCollections.length);
	j = 0
	for(i=54;i<imgColSize;i++){
		imgsrc = document.images(i).src.split("/");
		upperbound = imgsrc.length-1;
		caption = imgsrc[upperbound];
		caption = caption.replace("(Custom)", "");
		caption = caption.replace("(2)", "");
		caption = caption.replace(".jpg", "");
		caption = unescape(caption);
		spanCollections[j].insertAdjacentText("beforeEnd", caption);
		j = j + 1;
	}
}
