
// ==========================================
// 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/gallery/gallery_img01.jpg';
Picture[2]  = 'images/work/gallery/gallery_img02.jpg';
Picture[3]  = 'images/work/gallery/gallery_img03.jpg';
Picture[4]  = 'images/work/gallery/gallery_img04.jpg';
Picture[5]  = 'images/work/gallery/gallery_img05.jpg';
Picture[6]  = 'images/work/gallery/gallery_img06.jpg';
Picture[7]  = 'images/work/gallery/gallery_img07.jpg';
Picture[8]  = 'images/work/gallery/gallery_img08.jpg';
Picture[9]  = 'images/work/gallery/gallery_img09.jpg';
Picture[10]  = 'images/work/gallery/gallery_img10.jpg';
Picture[11]  = 'images/work/gallery/gallery_img11.jpg';
Picture[12]  = 'images/work/gallery/gallery_img12.jpg';
Picture[13]  = 'images/work/gallery/gallery_img13.jpg';
Picture[14]  = 'images/work/gallery/gallery_img14.jpg';
Picture[15]  = 'images/work/gallery/gallery_img15.jpg';
Picture[16]  = 'images/work/gallery/gallery_img16.jpg';
Picture[17]  = 'images/work/gallery/gallery_img17.jpg';


Caption[1]  = "A Time for Peace<br>Acrylic on Canvas<br>16 X 20<br>2005<br>Not for Sale<br>A gift for my Mother.";
Caption[2]  = "Cabin on the Sea<br>Acrylic on Canvas<br>2' x 3'<br>2005<br>SOLD<br>Sold to a friend who just had to have one.";
Caption[3]  = "Harmony among Friends<br>Acrylic on Canvas<br>2' x 3'<br>2007<br>Not for Sale<br>Inspired by one of those magical moments when you know everyone feels it too.";
Caption[4]  = "Nathan and Crystal<br>Acrylic on Canvas<br>16 X 20<br>2007<br>Not for Sale<br>My son and his favorite chicken.";
Caption[5]  = "The Santa Barbara Experience<br>Acrylic on Canvas<br>18 X 24<br>2003<br>Not for Sale<br>Inspired the weekend trip to Santa Barbara that I won.";
Caption[6]  = "Mid  Summers Light<br>Acrylic on Canvas<br>16 X 20<br>2002<br>SOLD<br>First painting after a 10 year break.";
Caption[7]  = "Path Through the Pines<br>Acrylic on Canvas<br>2 X 3<br>2004<br>SOLD<br>Sold at the Sooke Fine arts show.";
Caption[8]  = "One Moment in a Dream<br>Acrylic on Canvas<br>42 X 42<br>2004<br>SOLD<br>For the Xchanges Gallery 5th annual May Day Erotic art show. Sold to a woman as a gift for her husband.";
Caption[9]  = "The Broken Fence<br>Acrylic on Canvas<br>2 X 3<br>2003<br>SOLD<br>Sold at my first solo show.";
Caption[10]  = "The Maples<br>Acrylic on Canvas<br>2.5 X 3.5<br>2003<br>SOLD<br>To my friend who hosted my first solo art show.";
Caption[11]  = "The Lake<br>Acrylic on Canvas<br>2.5 X 3.5<br>2004<br>SOLD<br>First commissioned painting of my friends grandmothers lake in the highlands.";
Caption[12]  = "Mornings Light<br>Acrylic on Canvas<br>16 X 20<br>2005<br>SOLD<br>Sold to a friend as a gift for his wife.";
Caption[13]  = "Pacific Grace at Inner Harbor<br>Acrylic on Canvas<br>16 X 20<br>2005<br>SOLD<br>Sold at Sidney Fine Art show to a grandmother as a gift to her grandson who worked on this ship.";
Caption[14]  = "Welcome Home<br>Acrylic on Canvas<br>2 X 3<br>2004<br>SOLD<br>Painted to help me with the process of making my new place feel like home.";
Caption[15]  = "Reflection<br>Acrylic on Canvas<br>16 X 20<br>2007<br>Not for Sale<br>A Birthday gift to a dear friend.";
Caption[16]  = "Wet Silk<br>Acrylic on Canvas<br>24 X 36<br>2007<br>Not for Sale<br>Painted for Paula in exchange for this beautiful website.";
Caption[17]  = "Solace<br>Acrylic on Canvas<br>18 X 24<br>2008<br>Not for Sale<br>Solace is of my son Dillon in his 17th year. His talent, grace and humbleness bring an ache of pride to my heart that only a parent can know.";


// =====================================
// 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();
}}

