var currentdate = 0
var core = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '
  }
}

image = new StringArray(18)
image[0] = 'images/common/Eurodimday1.jpg'
image[1] = 'images/common/Eurodimday2.jpg'
image[2] = 'images/common/Eurodimday3.jpg'
image[3] = 'images/common/Eurodimday4.jpg'
image[4] = 'images/common/Eurodimday5.jpg'
image[5] = 'images/common/Eurodimday6.jpg'
image[6] = 'images/common/Eurodimday7.jpg'
image[7] = 'images/common/Eurodimday8.jpg'
image[8] = 'images/common/Eurodimday9.jpg'
image[9] = 'images/common/Eurodimday10.jpg'
image[10] = 'images/common/Eurodimday11.jpg'
image[11] = 'images/common/Eurodimday12.jpg'
image[12] = 'images/common/Eurodimday13.jpg'
image[13] = 'images/common/Eurodimday14.jpg'
image[14] = 'images/common/Eurodimday15.jpg'
image[15] = 'images/common/Eurodimday16.jpg'
image[16] = 'images/common/Eurodimday17.jpg'
image[17] = 'images/common/Eurodimday18.jpg'
image[18] = 'images/common/Eurodimday19.jpg'
image[19] = 'images/common/Eurodimday20.jpg'
image[20] = 'images/common/Eurodimday21.jpg'
image[21] = 'images/common/Eurodimday22.jpg'
image[22] = 'images/common/Eurodimday23.jpg'
image[23] = 'images/common/Eurodimday24.jpg'
image[24] = 'images/common/Eurodimday25.jpg'
image[25] = 'images/common/Eurodimday26.jpg'
image[26] = 'images/common/Eurodimday27.jpg'



//alert(image.length);
var ran = 60/image.length

function ranimage2() {
  var core = Math.floor(Math.random()*26)
  	//alert(core);
    return(image[core])
}

