window.onload=function() {
	if(!document.getElementById || !document.getElementsByTagName) return;
	links=document.getElementById("minipics").getElementsByTagName("a");
	for(i=0;i<links.length;i++)
		links[i].onclick=function(){Show(this);return(false)}
		}

function Show(obj){
	bigimg=document.getElementById("bigimage");
	bigimg.src=obj.getAttribute("href");
}