// JavaScript Document
/***********************************************
* Image Thumbnail Viewer II script- © Dynamic Drive DHTML code library (www.dynamicdrive.com) THANKS!
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/
//Specify image paths and optional link (set link to "" for no link):
//Also add a caption, "" for no caption (caption function added to this original script 03/29/04 )
var dynimages=new Array()
dynimages[0]=["images/honen-in_moonlight_lg.jpg", "","<span class='boldstyle'>Solo exhibition at Honen-in Temple, Kyoto, Japan, December 2003. </span> These basalt stones contain the most powerful living spirits I have ever worked with. To me they are truly spirits of the earth. I was honoured to be allowed to show these works in the garden of this famous Buddhist temple.  <span class='boldstyle'> Meeting by Moonlight, 2003 </span> (left) and <span class='boldstyle'> Laughing Spirit, 2003. </span>	Basalt, 34in x 5in x 4in and 38in x 5in x 5in"]
dynimages[1]=["images/honen-in_indoor_lg.jpg", "","<span class='boldstyle'>Solo exhibition at Honen-in Temple, Kyoto, Japan</span>  (indoor installation), Japan, December 2003."]
dynimages[2]=["images/gallery_apa_lg.jpg", "","<span class='boldstyle'>Solo exhibition at Gallery APA, Nagoya, Japan, February-March 2003.</span> This was my first opportunity to exhibit stone sculptures and stone prints in combination. In fact, several works are actually stone-and-paper compositions. It was also a chance to collaborate with a Japanese artist: Tomoko Nishio, a flower designer."]
dynimages[3]=["images/gallery_apa2_lg.jpg", "","<span class='boldstyle'>Solo exhibition at Gallery APA, Nagoya, Japan, February-March 2003.</span> This was my first opportunity to exhibit stone sculptures and stone prints in combination. In fact, several works are actually stone-and-paper compositions."]
dynimages[4]=["images/alliance_francaise_lg.jpg", "","<span class='boldstyle'>Solo exhibition at the Alliance Française, Ottawa, November 2000.</span> Sponsored by the Embassies of France and Germany in Canada, this was my first solo exhibition."]
dynimages[5]=["images/alliance_francaise2_lg.jpg", "","<span class='boldstyle'>Solo exhibition at the Alliance Française, Ottawa, November 2000.</span> Sponsored by the Embassies of France and Germany in Canada, this was my first solo exhibition. Also it was my first opportunity to exhibit the Ancestors, a series of works in sandstone."]
dynimages[6]=["images/azekura_lg.jpg", "","<span class='boldstyle'>Solo exhibition at Azekura Exhibition Space, Kyoto, Japan, December 2002.</span> This wonderful large space was once a sake factory. It afforded me the opportunity to show not only sculptures but also a number of works on paper: abstract sumi and acrylic paintings on Japanese and European art papers."]
dynimages[7]=["images/azekura2_lg.jpg", "","<span class='boldstyle'>Solo exhibition at Azekura Exhibition Space, Kyoto, Japan, December 2002.</span> This wonderful large space was once a sake factory. It afforded me the opportunity to show not only sculptures but also a number of works on paper: abstract sumi and acrylic paintings on Japanese and European art papers."]
dynimages[8]=["images/vac_lg.jpg", "","<span class='boldstyle'>Two-person exhibition at the Visual Arts Centre, Orleans (Ottawa), May 2000.</span> I was pleased to be able to exhibit together with the painter John Sadler, who is also a sculptor and was my instructor and mentor at the Ottawa School of Art."]
//Preload images ("yes" or "no"):
var preloadimg="yes"

//Set optional link target to be added to all images with a link:
var optlinktarget=""

//Set image border width
var imgborderwidth=0

//Optionally, change 1.0 and 0.7 below to affect Wipe gradient size and duration in seconds in IE5.5+:
var filterstring="progid:DXImageTransform.Microsoft.GradientWipe(GradientSize=0.0 Duration=0.0)"

///////No need to edit beyond here/////

if (preloadimg=="no"){
for (x=0; x<dynimages.length; x++){
var myimage=new Image()
myimage.src=dynimages[x][0]
}
}

function returnimgcode(theimg){
var imghtml=""
if (theimg[1]!="")
imghtml='<a href="'+theimg[1]+'" target="'+optlinktarget+'">'
imghtml+='<img src="'+theimg[0]+'" border="'+imgborderwidth+'">'
if (theimg[1]!="")
imghtml+='</a>'
imghtml+='<br/><p>'+theimg[2]+'</p>';
return imghtml
}

function modifyimage(loadarea, imgindex){
if (document.getElementById){
var imgobj=document.getElementById(loadarea)
if (imgobj.filters && window.createPopup){
imgobj.style.filter=filterstring
imgobj.filters[0].Apply()
}
imgobj.innerHTML=returnimgcode(dynimages[imgindex])
if (imgobj.filters && window.createPopup)
imgobj.filters[0].Play()
return false
}
}

