// 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';
slides[8] = '9.jpg';
slides[9] = '10.jpg';
slides[10] = '11.jpg';
slides[11] = '12.jpg';

return slides;
}

function setupCaptions() {

var captions = new Array();

captions[0] = 'Eating Creme Brulee with Tiny Silver Spoons, 48"x36", oil and encaustic on muslin over panel';
captions[1] = 'When Dolls Become Relics, 57"x30" (two panels), oil on muslin over panel';
captions[2] = 'I Love It Here, 24"x32", oil and encaustic on muslin over panel';
captions[3] = 'Nailing It Down, 32"x24", oil on fabric over panel with copper and beads';
captions[4] = 'Dressing to Show Exactly Who I Am, top 12"x30", bottom 48"x24", oil and wax on muslin over panel';
captions[5] = 'Patch \'em Up, Use \'em Again, 32"x24", oil and wax on muslin over panel';
captions[6] = 'Paso a Paso, 56"x36" (two panels), oil and wax on muslin over panel';
captions[7] = 'Shifting Sands, two panels each 5"x36", oil on fabric over panel';
captions[8] = 'Succotash and Real Lace, 32"x24", oil on fabric over panel';
captions[9] = 'Of Catacombs and Candle Light, 36"x48", oil on muslin over panel';
captions[10] = 'She Went to College, He Went to War, 36"x21", oil and wax on muslin over panel';
captions[11] = 'Fresh Mountain Air and a Dented Tin Cup, 40"x36", oil on muslin over panel';

return captions;
}