<!--

/*
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*3800);
}
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 ("images/content/tour01.jpg", "The WIN Entertainment Centre is located on the corner of Crown and Harbour Streets, Wollongong");
g_ImageTable[g_imax++] = new Array ("images/content/tour02.jpg", "Welcome to the WIN Entertainment Centres main entrance.");
g_ImageTable[g_imax++] = new Array ("images/content/tour03.jpg", "The Ticketek Box Office is located to the right of the venue's front door entrance. Ticketek sells tickets for all events held at the venue and throughout Australia.");
g_ImageTable[g_imax++] = new Array ("images/content/tour04.jpg", "The venue is surrounded by 3 foyers which are lined with catering facilities, sitting areas, amenities and baby change rooms.");
g_ImageTable[g_imax++] = new Array ("images/content/tour05.jpg", "The auditorium floor is accessible by 8 entry doors. Friendly ushers are always available to assist with seating enquiries.");
g_ImageTable[g_imax++] = new Array ("images/content/tour06.jpg", "Food and Beverage outlets are conveniently located throughout the venue. Hot and cold foods, snacks, crisps, popcorn, alcohol and piping hot coffee can all be purchased.");
g_ImageTable[g_imax++] = new Array ("images/content/tour07.jpg", "The Premiers Room Function Centre opened in April 2002. With floor to ceiling glass walls and ocean views, the facility is available for seminars, corporate functions, dinners, weddings and school formals.");
g_ImageTable[g_imax++] = new Array ("images/content/tour08.jpg", "The Premiers Room Function Centre can accommodate up to 350 pax in dinner mode, 450 pax in theatre style and 700 pax in stand-up cocktail mode.");
g_ImageTable[g_imax++] = new Array ("images/content/tour09.jpg", "The auditorium can be configured into a number of different modes allowing the venue to host an array of different events. The Bryan Adams rock concert sold out in March 2000.");
g_ImageTable[g_imax++] = new Array ("images/content/tour10.jpg", "Events can be hosted in arena mode.");
g_ImageTable[g_imax++] = new Array ("images/content/tour11.jpg", "Large scale conferences, seminars and presentations can be easily accommodated.");
g_ImageTable[g_imax++] = new Array ("images/content/tour12.jpg", "Gala dinners of up to 1,200 pax can become themed spectacular events.");
g_ImageTable[g_imax++] = new Array ("images/content/tour13.jpg", "The 1,500m2 auditorium floor can host up to 800 pax in classroom style for conferences.");
g_ImageTable[g_imax++] = new Array ("images/content/tour14.jpg", "The venue is so versatile that it can even accommodate bull riding!");
//extend the above list as desired
g_dwTimeOutSec=2

////End configuration/////////////////////////////

if (document.getElementById||document.all)
window.onload=Play


//-->