// JavaScript Document

function thumb(id, thumb)
{
	var image = document.getElementById(id);
	image.src = thumb.src;
	image.alt = thumb.alt;
}