// JavaScript Document
imgs = new Array(7)
imgs[0]="images/random/sq-buddha-pergola.jpg"
imgs[1]="images/random/sq-decking-detail.jpg"
imgs[2]="images/random/sq-pergola-pebbles.jpg"
imgs[3]="images/random/sq-potted-plant.jpg"
imgs[4]="images/random/sq-seated-arbour1-green.jpg"
imgs[5]="images/random/sq-small-summhouse.jpg"
imgs[6]="images/random/sq-sumhouse-int.jpg"
imgs[7]="images/random/sq-ant1.jpg"
imgs[8]="images/random/sq-ant2.jpg"

function genrnd(){
	var num = 0
	num = (Math.floor(Math.random()*9));
	document.images['rnd'].src = imgs[num]
	setTimeout("genrnd()",5000)
}


