// JavaScript Document

function setupSlides() {

var slides = new Array();

slides[0] = '1.jpg';
slides[1] = '2.jpg';
slides[2] = '3.jpg';
slides[3] = '4.jpg';
slides[4] = '5.jpg';
slides[5] = '6.jpg';
slides[6] = '7.jpg';
slides[7] = '8.jpg';

return slides;
}

function setupCaptions() {

var captions = new Array();

captions[0] = 'Two Dogs, Two Sheep, 12"x12", mixed media';
captions[1] = 'Three Cormorants, mixed media';
captions[2] = 'Goat, Noodle Series, mixed media';
captions[3] = 'Harpo with Yellow Ball, 12"x12", mixed media';
captions[4] = 'Pair of Sheep, 12"x12", mixed media';
captions[5] = 'Pig Straight Up, Noodle Series, mixed media';
captions[6] = 'Sheep with Two Babies, 12"x12", mixed media';
captions[7] = 'Sheep with Harpo, 12"x12", mixed media';


return captions;
}