ÿþ<html> <head> <title> Guy Königstein - Home </title> <SCRIPT LANGUAGE="JavaScript"> <!-- var dimages=new Array(); var numImages=8; for (i=0; i<numImages; i++) { dimages[i]=new Image(); dimages[i].src="images/image"+(i+1)+".jpg"; } var curImage=-1; function swapPicture() { if (document.images) { var nextImage=curImage+1; if (nextImage>=numImages) nextImage=0; if (dimages[nextImage] && dimages[nextImage].complete) { var target=0; if (document.images.myImage) target=document.images.myImage; if (document.all && document.getElementById("myImage")) target=document.getElementById("myImage"); if (target) { target.src=dimages[nextImage].src; curImage=nextImage; } setTimeout("swapPicture()", 3800); } else { setTimeout("swapPicture()", 200); } } } setTimeout("swapPicture()", 3800); //--> </SCRIPT> </head> <body> <br/> <div align="center"> <p style="font-family:tahoma; font-size:15px; color:grey"> Guy Königstein </p> <p style="font-family:tahoma; font-size:13px; color:grey"> researching, mapping, curating, writing and giving form to narratives </p> <br/><br/><br/> <img border=0 width=510 height=341 alt="home" ID="myImage" NAME="myImage" SRC="images/image1.jpg"></IMG> <br/><br/><br/><br/> <p style="font-family:tahoma; font-size:13px; color:grey"> <a style="text-decoration:none; color:grey" href="http://www.guykoenigstein.com/projects.html"> projects </a> | <a style="text-decoration:none; color:grey" href="http://www.guykoenigstein.com/info.html"> info </a> </p> </div> </body> </html>