// JavaScript Document

// Loading the pictures from the thumbnails
function loadPicture(which)
	{	
	source = which.src;
	name = which.alt;
	newName = name.split("_");
	newPicture = source.replace("/smallthumbnail", "");
	document.getElementsByName(newName[0])[0].src = newPicture;
	}
