// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

var currentdate = 0;
var core = 1;

function initArray() {
this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

image = new initArray(
"images/countrycareersnew1.jpg",
"images/countrycareersnew2.jpg",
"images/countrycareersnew3.jpg",
"images/countrycareersnew4.jpg",
"images/countrycareersnew5.jpg",
"images/countrycareersnew6.jpg",
"images/countrycareersnew7.jpg",
"images/countrycareersnew8.jpg",
"images/countrycareersnew9.jpg",
"images/countrycareersnew10.jpg",
"images/countrycareersnew11.jpg"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranimage = image[core];

document.write('<div style=\"padding: 0px; text-align: right; width: 760; height: 119px; background-color:#ffffff; background-image:  url('+ranimage+')\">');

