
// ==========================================
// Slideshow - Set the following variables...
// ==========================================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 2;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this
var showHot = false;       // don't change this

Picture[1]  = 'images/work/earlywork/earlywork_img01.jpg';
Picture[2]  = 'images/work/earlywork/earlywork_img02.jpg';
Picture[3]  = 'images/work/earlywork/earlywork_img03.jpg';
Picture[4]  = 'images/work/earlywork/earlywork_img04.jpg';
Picture[5]  = 'images/work/earlywork/earlywork_img05.jpg';
Picture[6]  = 'images/work/earlywork/earlywork_img06.jpg';
Picture[7]  = 'images/work/earlywork/earlywork_img07.jpg';
Picture[8]  = 'images/work/earlywork/earlywork_img08.jpg';
Picture[9]  = 'images/work/earlywork/earlywork_img09.jpg';
Picture[10]  = 'images/work/earlywork/earlywork_img10.jpg';
Picture[11]  = 'images/work/earlywork/earlywork_img11.jpg';
Picture[12]  = 'images/work/earlywork/earlywork_img12.jpg';


Caption[1]  = "The Back Door<br>Oil on Canvas<br>4' x 5'<br>1982<br>Not for Sale<br>One of my favs from my UVIC years. From a photo of the back door of the house we rented in Esquimalt.";
Caption[2]  = "Up the River<br>Oil on Canvas<br>5' x 6'<br>1982<br>Not for Sale<br>‘Go Big’ my Prof. Doug Morton said… ";
Caption[3]  = "House Jungle<br>Oil on Canvas<br>32” X 47”<br>1982<br>$1400<br>The organic period.";
Caption[4]  = "Good Morning<br>Oil on Canvas<br>4' x 5'<br>1982<br>Not for Sale<br>The rented house in Esquimalt.";
Caption[5]  = "The Red Church<br>Oil on Canvas<br>41” X 55”<br>1982<br>$1500<br>The church on Raynor Road.";
Caption[6]  = "The Awakening<br>Oil on Canvas<br>2' x 3'<br>1981<br>$1000";
Caption[7]  = "The Red Plant<br>Oil on Canvas<br>32” x 47”<br>1982<br>$1400";
Caption[8]  = "Finlayson Arm from the Malahat<br>oil on canvas<br>3' x 4'<br>1983<br>$1200<br>Painted while living on the Malahat.";
Caption[9]  = "The Green Plant<br>Oil on Canvas<br>30” x 42”<br>1982<br>$1300";
Caption[10]  = "The Farm<br>Oil on Canvas<br>3’ X 4’<br>1983<br>Not for Sale<br>A gift to my sister-in-law / best friend.";
Caption[11]  = "Caligraphic<br>oil on canvas<br>2 1/2’ x 3 1/2’<br>1980<br>$800";
Caption[12]  = "Shane<br>oil on canvas<br>2 1/2’ x 3 1/2’<br>1992<br>Not for Sale";



// =====================================
// Do not edit anything below this line!
// =====================================

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 (showHot){
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.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
}}


