
/*
Slide show functions
lifted from (and thanks to ) BarelyFitz JavaScript slideshow, http://www.barelyfitz.com
This is free, open-source software: you can redistribute it and/or modify it under the terms of the GNU General Public License.

Added new pictures taken by Stewart Stokes, November 24, 2010,  Jerome Clark
*/

ss = new slideshow('ss');
ss.prefetch = -1;

s = new slide();
s.src = 'arm chair Nov 2010.gif';
s.title = 'New Arm Chair';
s.text = 'This is an arm chair I built in August of 2010.  The rear legs, seat back and arms  are curved.  The slats in the seat back are also slightly curved, to provide lumbar support.  Compare this chair to the next one, which I built early in my woodworking career, which is all straight lines except for the arms.';
ss.add_slide(s);

s = new slide();
s.src = 'chair.gif';
s.title = 'Arm Chair';
s.text = 'I built this chair in 2001.  This chair and the the one in the previous image are made of White Oak, finished in hand-rubbed Lindseed oil and wax.  The seats are covered in leather.';
ss.add_slide(s);

s = new slide();
s.src = 'desk Nov 2010.gif';
s.title = 'Desk';
s.text = 'Here is a writing desk in White Oak with Walnut accents.  The Walnut accents match those in the chair in the next picture.  There are three drawers and the drawer fronts are cut from the front apron.  The desktop features quater-sawn White Oak.';
ss.add_slide(s);

s = new slide();
s.src = 'chair Nov 2010.gif';
s.title = 'Chair';
s.text = 'This chair goes with the desk in the previous image.  It also is built of quater-sawn White Oak with Walnut accents and the seat is covered in leather.  It is inspired by a dining room set designed by Eliel Saarinen.  I saw the original at the Cranbrook Muesum in Bloomfield, MI, several years ago.  The original is made of Fir with the stripes painted on.  I decided to build it in White Oak.  Instead of painted stripes I laminated Walnut bands with the White Oak  They are not veneer or inlay, they are solid wood';
ss.add_slide(s);

s = new slide();
s.src = 'pic4.gif';
s.title = 'Table & Chair';
s.text = 'A view of the chair seen above and a companion coffee table.  The table features quater-sawn Curly White Oak.  It has the same hand-rubbed finish.';
ss.add_slide(s);

s = new slide();
s.src = 'pic2.gif';
s.title = 'Hall Table';
s.text = 'A hall table in Cherry.  I created a simple design for this table to highlight the beauty of the Cherry top.';
ss.add_slide(s);

s = new slide();
s.src = 'pic6.gif';
s.title = 'Hall Table';
s.text = 'Another Cherry hall table.  I\'ve built them in Mahogany and Walnut as well.  This view shows the curve along the front edge.';
ss.add_slide(s);

s = new slide();
s.src = 'hall table Nov 2010.gif';
s.title = 'Hall Table';
s.text = 'Here is a newer picture of a Cherry table.';
ss.add_slide(s);

s = new slide();
s.src = 'dropleaf table Nov 2010.gif';
s.title = 'Drop Leaf Table';
s.text = 'This drop leaf table is made of quater-sawn Red Oak with a dark stain and an oil finish.  The legs are turned, with pad feet.';
ss.add_slide(s);

s = new slide();
s.src = 'chest nov2010.gif';
s.title = 'Chest of Drawers';
s.text = 'A Chest of Drawers in Cherry.  All the drawer fronts are made from one board so the color and grain pattern are uniform.  The raised panels on the sides are book-matched.';
ss.add_slide(s);

s = new slide();
s.src = 'pic5.gif';
s.title = 'Writing Desk';
s.text = 'This writing desk is made of Sapelle and Walnut.  The top is Walnut with two strips of Sapelle inlaid.  The frame is made of Sapelle.  The center drawer features a pull-out shelf for a lap-top or keyboard.  There are two smaller drawers, one on each side.';
ss.add_slide(s);

s = new slide();
s.src = 'pic5a.gif';
s.title = 'Desk Detail';
s.text = 'Here is a close-up of the writing desk showing the Sapelle inlay.';
ss.add_slide(s);

s = new slide();
s.src = 'mirror Nov 2010.gif';
s.title = 'Mirror';
s.text = 'This mirror frame is one of several I\'ve made.  I used Cury Maple and Bloodwood on this one.  Others have Walnut with Cherry and Mahogany with Holly.';
ss.add_slide(s);

s = new slide();
s.src = 'mirror detail.jpg';
s.title = 'Mirror';
s.text = 'Here is a closer view of a mirror.';
ss.add_slide(s);

s = new slide();
s.src = 'builtin.gif';
s.title = 'Corner Cabinet';
s.text = 'This is a built-in corner cabinet I did several years ago.  The wood is Cherry.  The inerior shelves are glass and there are interior lights at the top.';
ss.add_slide(s);

s = new slide();
s.src = 'shop.jpg';
s.title = 'Studio';
s.text = 'This is a view of my studio.  My new workbench is in the forground.';
ss.add_slide(s);

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
  s.target = "slideshow_popup";
  s.attr = "width=620,height=420,resizable=yes,scrollbars=yes";
}

/*
end of Slide show functions
*/

