	g_fPlayMode = 1;
	g_iimg = -1;
	g_imax = 0;
	g_ImageTable = new Array();
	g_dwTimeOutSec=7;
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic4.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic2.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic3.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic8.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic4.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic5.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic6.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic4.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic7.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic12.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic10.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic4.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic1.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic9.jpg' width=691 height=219 border=0 style='margin-left:1px'>");
    g_ImageTable[g_imax++] = new Array ("<img src='images/homeBigPic11.jpg' width=691 height=219 border=0 style='margin-left:1px'>");

    function getobject(obj){
    if (document.getElementById)
    return document.getElementById(obj)
    else if (document.all)
    return document.all[obj]
    }

    function ChangeImage_Img(fFwd)  { if (fFwd) {   if (++g_iimg==g_imax) {  g_iimg=0; }  }  else  { if (g_iimg==0) {g_iimg=g_imax;}  g_iimg--; }  Update_Img();  }
    function Update_Img(){ getobject("homeBigImage").innerHTML = g_ImageTable[g_iimg][0]; }
    function Prev_Img() { ChangeImage_Img(false); }
    function Next_Img() { ChangeImage_Img(true); }

    if ((document.getElementById||document.all)&&g_doSlideshow) {
        try {window.setInterval("Next_Img()", g_dwTimeOutSec*1000);} catch(e){}
    }
