
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.siteground170.com/%7Ewithak/wp-content/themes/withak/images/smoke_header3.jpg'
  //image[1] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/fireworks1.jpg'
  //image[2] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/fireworks2.jpg'
  image[1] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden1.jpg'
  image[2] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden2.jpg'  
  image[3] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden1.jpg'
  image[4] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/gabe1.jpg'
  image[5] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden3.jpg'
  image[6] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden4.jpg'
  image[7] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/gabe1.jpg'
  image[8] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden2.jpg'
  image[9] = 'http://www.siteground170.com/%7Ewithak/wp-content/themes/withak/images/hayden5.jpg'
  
  var ran = 60/image.length
  ranimage(ran);


function ranimage() {
  currentdate = new Date();
  core = currentdate.getSeconds();
  core = Math.floor(core/ran);
  document.getElementById("headerIMG").src = image[core];    
}

//Replace big image with new value selected from thumbnail
function PlayRollover(Image) {
	document.getElementById("play").src = "images/" + Image;
}