/*
 Author :		Michael Cheung
 E-mail :		info@michaelassociates.co.uk
 Date Start :	09/12/2005
 Date Amend :	09/12/2005
 Client : 		finestfloridavillas.com
 Website : 		www.finestfloridavillas.com
 Version : 		v1.0.
*/

<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

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] = 'http://www.britishprecast.org/concretetargets/images/random/1.jpg'
image[1] = 'http://www.britishprecast.org/concretetargets/images/random/2.jpg'
image[2] = 'http://www.britishprecast.org/concretetargets/images/random/3.jpg'
image[3] = 'http://www.britishprecast.org/concretetargets/images/random/4.jpg'
image[4] = 'http://www.britishprecast.org/concretetargets/images/random/5.jpg'
image[5] = 'http://www.britishprecast.org/concretetargets/images/random/6.jpg'
image[6] = 'http://www.britishprecast.org/concretetargets/images/random/7.jpg'
image[7] = 'http://www.britishprecast.org/concretetargets/images/random/8.jpg'
image[8] = 'http://www.britishprecast.org/concretetargets/images/random/9.jpg'
image[9] = 'http://www.britishprecast.org/concretetargets/images/random/10.jpg'
image[10] = 'http://www.britishprecast.org/concretetargets/images/random/11.jpg'
image[11] = 'http://www.britishprecast.org/concretetargets/images/random/12.jpg'

var ran = 60/image.length

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