/*
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
*/
}
}
function OnImgLoad()
{
if (g_fPlayMode)
window.setTimeout("Tick()", g_dwTimeOutSec*1000);
}
function Tick()
{
if (g_fPlayMode)
Next();
}
function Prev()
{
ChangeImage(false);
}
function Next()
{
ChangeImage(true);
}
//configure the below images and description to your own.
g_ImageTable[g_imax++] = new Array ("foto1.jpg", "beschrijving1");
g_ImageTable[g_imax++] = new Array ("foto2.jpg", "beschrijving2");
g_ImageTable[g_imax++] = new Array ("foto3.jpg", "beschrijving3");
g_ImageTable[g_imax++] = new Array ("foto4.jpg", "beschrijving4");
g_ImageTable[g_imax++] = new Array ("foto5.jpg", "beschrijving5");
//extend the above list as desired
g_dwTimeOutSec=2