
// www.WAI.co.uk - 16/9/04 - Ed.Davison  - Jetix Global Kids Image rotator

var currentdate = 0
var core = 0

function StringArray (n) {
this.length = n;
for (var i =1; i <= n; i++) {
	this[i] = ' '

}
}

image = new StringArray(10)
image[0] = '/staging/images/animated_flowercat.gif'
image[1] = '/staging/images/animated_hulk.gif'
image[2] = '/staging/images/animated_silversurfer.gif'
image[3] = '/staging/images/animated_sonic.gif'
image[4] = '/staging/images/animated_flowercat.gif'
image[5] = '/staging/images/animated_hulk.gif'
image[6] = '/staging/images/animated_silversurfer.gif'
image[7] = '/staging/images/animated_sonic.gif'
image[8] = '/staging/images/animated_flowercat.gif'
image[9] = '/staging/images/animated_hulk.gif'

var ran = 60/image.length

function ranimage() {
currentdate = new Date()
core = currentdate.getSeconds()
core = Math.floor(core/ran)
	return(image[core])
}

/*document.write("<img src='" +ranimage()+ "'>")*/
