
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 15000;
// Duration of crossfade (seconds)
var crossFadeDuration = 6;
// Specify the image files
var Pic = new Array();
Pic[0] = 'images/slideshow/art.jpg'
Pic[1] = 'images/slideshow/bridge.jpg'
Pic[2] = 'images/slideshow/cars.jpg'
Pic[3] = 'images/slideshow/cross.jpg'
Pic[4] = 'images/slideshow/farmersmarket.jpg'
Pic[5] = 'images/slideshow/garden.jpg'
Pic[6] = 'images/slideshow/grandtour.jpg'
Pic[7] = 'images/slideshow/howey.jpg'
Pic[8] = 'images/slideshow/koala.jpg'
Pic[9] = 'images/slideshow/oldetimemarket.jpg'
Pic[10] = 'images/slideshow/aquaticcentre.jpg'

var txt = new Array()
txt[0] ='These groups of tiled modern-art pillars are located in all towns throughout the Macedon Ranges. These pillars were created by groups of local school children, under the direction of a sculptor, with each individual pillar containing a simple message of hope.'
txt[1] ='Gisborne\'s extensive parks and gardens attract many visitors and provide recreation facilities for the community. Adjacent to Jackson Creek, several foot bridges and extensive walking paths allow easy access from one parkland to another, with many mature heritage listed trees providing shade along the way.'
txt[2] ='With their club rooms in Webb Crescent, New Gisborne, their "Run to the Rock" on Valentines Weekend each year, has become a tradition for car enthusiasts from throughout Victoria. The Macedon Ranges Car Club hold an annual day at Hanging Rock.'
txt[3] ='The world renowned Memorial Cross stands aloft on Mount Macedon, just a short drive from Gisborne. The Cross was dedicated in 1935, to those who served in the Great War. The approach road, gardens and the Memorial Cross were the generous donation of William Cameron of "Cameron Lodge", Mount Macedon.'
txt[4] ='The Gisborne Farmers & Home Produce Market is held on the first Sunday of June, July, August & September, with up to 40 stalls offering a wide variety of fresh home-grown & home-made products.'
txt[5] ='Many private gardens are regularly open to the public, to raise funds for charity. Autumn and Springtime are the most popular times for visiting most of the gardens in this district, although some are open for inspection at other times of the year. A small donation assists charities chosen by the owners of the gardens.'
txt[6] ='Commencing at Gisborne with a breakfast in February each year, collectors of more than one hundred classic cars, proudly display their treasures before being flagged off to tour throughout the picturesque Macedon Ranges. The day concludes with a community dinner, at which prizes are awarded.'
txt[7] ='This monument was erected by the Gisborne Old Boys Association to honour early pioneer Henry Howey, who selected land from Riddells Creek to Gisborne. He had a shepherds hut built near this site. Henry and his family were lost at sea when on their way to settle in Gisborne.'
txt[8] ='Koalas can still be found in parks and reserves throughout the district. Although koalas prefer specific eucalyptus leaves for their diet, they can sometimes be found in native vegetation along roadways.If on the ground, care is needed as they have little road sense and can be quite vicious.'
txt[9] ='Gisborne Olde Time Market is one of Victoria\'s largest and most popular Village markets ,offering an extensive variety of products including specialist home-grown produce, at more than 170 stalls. Held on the first Sunday of the month from Oct to May, from 9.00am - 3.00pm.'
txt[10] ='This modern, indoor aquatic facility, comprising three pools offering therapy, training and relaxation, is situated in a picturesque setting adjacent to the Jackson Creek parklands. It has full facilities for the disabled and conducts a large range of programs to suit all ages and abilities.'
// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
document.getElementById('sstext').innerHTML = txt[j]
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
