window.onload = function() {
	// Assign onclick handlers
	thumbsDiv = document.getElementById('thumbs');
	
	if (thumbsDiv) {
		for (i=0; i < thumbsDiv.childNodes.length; ++i) {
			// Attach fullscreen view handler
			if (thumbsDiv.childNodes[i].nodeName == 'A') {
				thumbsDiv.childNodes[i].onclick = function() {
					document.getElementById('foto').src = this.href;
					return false;
				};
			}
		}
		
		// Preload the images
		for (i=0; i < thumbsDiv.childNodes.length; ++i) {
			if (thumbsDiv.childNodes[i].nodeName == 'A') {
				img		= new Image();
				img.src	= thumbsDiv.childNodes[i].href;
			}
		}
	}
}