

/*
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];
getobject("_Ath_Img_X").innerHTML = g_iimg + 1;
getobject("_Ath_Img_N").innerHTML = g_imax;
}


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*1000);
}
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 ("http://www.mauihigh85.com/images/slides/slide1.jpg", "10 year Reunion Cake at Couple’s Night.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide2.jpg", "10-yr Reunion Shirt Design.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide6.jpg", "Stag Night…Let the party begin!!! Campos, Joann, Lisa, Mercy, Richard, and Aaron.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide7.jpg", "Stag Night…Welcoming from Sherman, Kim, Bradley, and Elinor – Smile, grab a drink and be merry.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide3.jpg", "Couple’s Night…Can’t get enough of our childhood favorite – who will win at JUN KEN PO.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide4.jpg", "Dinner time.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide5.jpg", "Kim with hubby Russell.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide8.jpg", "Jocelyn & Robert (Fiancée), and Mark Cugal.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide9.jpg", "Childhood friends since Kahului School days…Lisa Catchapiro and Elinor ‘Tini’ (Ancheta) Major.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide10.jpg", "Smiling for the camera is Wade Kitagawa (w/guest), Curtis & Madeline Ater.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide11.jpg", "Michael, it’s okay…it’s a party, have a drink.  Chargin with wife Edean.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide12.jpg", "Jeral Fukuda & Lane Otsu enjoying couple’s night with their guest.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide13.jpg", "Having a good time – Jr. Tadeo with wife Bobbie-Jo.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide14.jpg", "Bring it on…as Mercy and Elinor give out the answers, Joann gets busy writing.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide15.jpg", "Rod is that you among the smiles and laughter of friends Arlen Ito, April Kanemoto, Ivy (Omuro) Spencer & hubby?");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide16.jpg", "In a crowded room, Bradley Baisa waves us a shaka sign.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide17.jpg", "Madeline seems not to agree with her groups answer.  As Mark does his thing socializing.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide21.jpg", "What could Marsha and Karl be looking at???");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide18.jpg", "(Front l-r) Mercy, Joann, Kim, (Back l-r) Heidi, Lisa, and Elinor.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide19.jpg", "Friends since the 3rd grade at Kahului School…Kim (Galam) Phillips and Mika Unno.");
g_ImageTable[g_imax++] = new Array ("http://www.mauihigh85.com/images/slides/slide20.jpg", "Just the girls – (Front l-r) Elinor, Barbara, Prudy, Kim, (Back l-r) Rochelle and Heidi.");
//extend the above list as desired
g_dwTimeOutSec=2

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play




