// JavaScript Document

/*
Interactive Image slideshow with text description
By Christian Carlessi Salvadó (cocolinks@c.net.gt). Keep this notice intact.
Visit http://www.dynamicdrive.com for script
*/

g_fPlayMode = 0;
g_iimg = -1;
g_imax = 0;
g_ImageTable = new Array();

function ChangeImage(fFwd)
{
if (fFwd)
{
if (++g_iimg==g_imax)
g_iimg=0;
}
else
{
if (g_iimg==0)
g_iimg=g_imax;
g_iimg--;
}
Update();
}

function getobject(obj){
if (document.getElementById)
return document.getElementById(obj)
else if (document.all)
return document.all[obj]
}

function Update(){
getobject("_Ath_Slide").src = g_ImageTable[g_iimg][0];
getobject("_Ath_FileName").innerHTML = g_ImageTable[g_iimg][1];
}

function Play()
{
g_fPlayMode = !g_fPlayMode;
if (g_fPlayMode)
{
getobject("btnPrev").disabled = getobject("btnNext").disabled = true;
Next();
}
else 
{
getobject("btnPrev").disabled = getobject("btnNext").disabled = false;

}
}
function OnImgLoad()
{
if (g_fPlayMode)
window.setTimeout("Tick()", g_dwTimeOutSec*1500);
}
function Tick() 
{
if (g_fPlayMode)
Next();
}
function Prev()
{
ChangeImage(false);
}
function Next()
{
ChangeImage(true);
}

////configure below variables/////////////////////////////

//configure the below images and description to your own.
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_001.jpg", "<b>&quot;Ruth&quot;</b><br>Purpleheart");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_002.jpg", "<b>&quot;Alice&quot;</b><br>Mahogany with Pearl Insert"); 
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_003.jpg", "<b><font color='#660000'>Tied for 2nd Place, Highland Woodworking Screwdriver Contest</font><br><br>&quot;Carol&quot;</b><br>Mahogany &amp; Purpleheart with Rose Stone Insert");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_004.jpg", "<b>&quot;Needa&quot;</b><br>Maple Burl, Mahogany &amp; Canarywood");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_005.jpg", "<b><font color='#660000'>3rd Place, Highland Woodworking Screwdriver Contest</font><br><br>&quot;Ann&quot;</b><br>Walnut, Maple Burl, Oak &amp; Canarywood");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_006.jpg", "<b>&quot;Rose&quot;</b><br>Maple Burl &amp; Mahogany");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_007.jpg", "<b>&quot;Leah&quot;</b><br>Walnut with Mother of Pearl Shell Insert");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_008.jpg", "<b>&quot;Rachel&quot;</b><br>Maple with Tiger's Eye Stone Insert"); 
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_009.jpg", "<b>Side Table</b><br>Legs turned out of Myrtle with Walnut top");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_010.jpg", "<b>Clock</b><br>Maple Burl");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_011.jpg", "<b>Walnut Lidded Box</b><br>3&quot; x 5&quot;");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_012.jpg", "<b>Square Wine Bottle Coaster</b><br>Walnut with Pewter Inlay");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_013.jpg", "<b>Maple Hollow Form</b><br>8&quot;");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_014.jpg", "<b>Old-Fashioned Screw Piano Bench</b><br>Tan Oak with Purpleheart Inlay"); 
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_015.jpg", "<b>Piano Bench Detail</b>");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_016.jpg", "<b>Hollow Form</b><br>Redwood Burl on bottom, Holly on top with Ebony Rim Insert");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_017.jpg", "<b>Three-Legged Stool</b><br>Red Oak with Purpleheart Inlay");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_018.jpg", "<b>Ambrosia Maple Bowl</b>");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_019.jpg", "<b>Five-Sided Box with Oak Lid");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_020.jpg", "<b>Square Walnut Bowl</b>");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_021.jpg", "<b>Turned Bowl</b><br>Spalted Maple with Pewter Inlay Ring");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_022.jpg", "<b>Turned Bowl</b><br>Walnut with Pewter Inlay Ring");
g_ImageTable[g_imax++] = new Array ("/woodnews/index_files/august_2006/choquette/choquette_023.jpg", "<b>Western Hat</b><br>Maple Burl");

//extend the above list as desired

g_dwTimeOutSec=5

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play
