var Picture = new Array(); 
var Caption = new Array(); 
var showIsOn = false;       

//preload the buttunz and spalsh image...
if (document.images) {
galimage1 = new Image();
galimage1.src = "images/images/gallery/0.jpg";
galimage2 = new Image();
galimage2.src = "images/gallery_btn_back.gif";
galimage3 = new Image();
galimage3.src = "images/gallery_btn_next.gif";
}

//here are the pics...
Picture[1]   = 'images/origsold/1.jpg';
Picture[2]   = 'images/origsold/2.jpg';
Picture[3]   = 'images/origsold/3.jpg';
Picture[4]   = 'images/origsold/4.jpg';
Picture[5]   = 'images/origsold/5.jpg';
Picture[6]   = 'images/origsold/6.jpg';
Picture[7]   = 'images/origsold/7.jpg';
Picture[8]   = 'images/origsold/8.jpg';
Picture[9]   = 'images/origsold/9.jpg';
Picture[10]  = 'images/origsold/10.jpg';
Picture[11]  = 'images/origsold/11.jpg';
Picture[12]  = 'images/origsold/12.jpg';
Picture[13]  = 'images/origsold/13.jpg';
Picture[14]  = 'images/origsold/14.jpg';
Picture[15]  = 'images/origsold/15.jpg';
Picture[16]  = 'images/origsold/16.jpg';
Picture[17]  = 'images/origsold/17.jpg';
Picture[18]  = 'images/origsold/18.jpg';
Picture[19]  = 'images/origsold/19.jpg';
Picture[20]  = 'images/origsold/20.jpg';
Picture[21]  = 'images/origsold/21.jpg';

//and here are the captions...
Caption[1]   = "Embodiment<br />oil on canvas";
Caption[2]   = "The Wind<br />oil on canvas";
Caption[3]   = "Lean I<br />oil on canvas";
Caption[4]   = "Molecular Mentality<br />oil on canvas";
Caption[5]   = "Heat<br />oil on canvas";
Caption[6]   = "Earthly Genesis<br />oil on canvas";
Caption[7]   = "Tilt<br />oil on canvas";
Caption[8]   = "Hurricane<br />oil on canvas";
Caption[9]   = "Silhouette<br />oil on board";
Caption[10]  = "Definitely Her Back<br />oil on canvas";
Caption[11]  = "Saving Grace<br />gouache on paper";
Caption[12]  = "Genesis II<br />oil on board";
Caption[13]  = "Summer Series I<br />oil and pencil on paper";
Caption[14]  = "Summer Series II<br />oil and pencil on paper";
Caption[15]  = "Summer Series III<br />oil and pencil on paper";
Caption[16]  = "Amid Meditation<br />oil on board";
Caption[17]  = "Wantonly Laced I<br />ink and acrylic on paper";
Caption[18]  = "Wantonly Laced II<br />ink and acrylic on paper";
Caption[19]  = "Untitled<br />oil on canvas";
Caption[20]  = "Koi<br />oil on canvas";
Caption[21]  = "The Athlete<br />ink on paper";

var tss;
var iss;
var jss = 0;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function control(how){
if (showIsOn){
if (how=="H") jss = 1;
if (how=="F") jss = jss + 1;
if (how=="B") jss = jss - 1;
if (jss > (pss)) jss=1;
if (jss < 1) jss = pss;
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=.2)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("caption").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}
}

//full size...
function showFull() {
mapWindow = window.open('gallery/origsold/'+jss+'.html','mapWin', 'width=528,height=600,top=0,left=100')
}

