//Javascript Created by Computerhope http://www.computerhope.com

//store the quotations in arrays

images = new Array(5);

images[0] = "<img src='/oneday/images/mainpics/home1.jpg' alt='Wanda and Ray - have started cycling'>";

images[1] = "<img src='/oneday/images/mainpics/home2.jpg' alt='Sal and Liz - bought an EnergyStar washer'>";

images[2] = "<img src='/oneday/images/mainpics/home3.jpg' alt='Mary reads the One Day enews monthly'>";

images[3] = "<img src='/oneday/images/mainpics/home4.jpg' alt='Sarah and Ben - eat local vegetables'>";

images[4] = "<img src='/oneday/images/mainpics/home5.jpg' alt='The Davidson's renovated - received $5,800 in rebates'>";

images[5] = "<img src='/oneday/images/mainpics/home6.jpg' alt='Deepa washes in cold - hangs to dry'>";

images[6] = "<img src='/oneday/images/mainpics/home7.jpg' alt='Linda started an office green team'>";

index = Math.floor(Math.random() * images.length);

document.write(images[index]);

//done

//
