var currentdate = 0

var core = 0



function StringArray (n) {

  this.length = n;

  for (var i =1; i <= n; i++) {

    this[i] = ' ';

  }

}



image = new StringArray(3);

image[0] = "<img src='_images/featured_sites/my-allergyeasy.jpg' name='featured_img' width='180' height='177' id='featured_img' />";

image[1] = "<img src='_images/featured_sites/saffron.jpg' name='featured_img' width='180' height='183' id='featured_img' />";

image[2] = "<img src='_images/featured_sites/gillgroup.jpg' name='featured_img' width='180' height='146' id='featured_img' />";



names = new StringArray(3);

names[0] = 'My AllergyEasy';

names[1] = 'Steve Saffron';

names[2] = 'TriMark Gill Group';



links = new StringArray(3);

links[0] = 'http://www.myallergyeasy.com/';

links[1] = 'http://www.buildapositiveworkclimate.com/';

links[2] = 'http://www.gillgroupinc.com/';



var ran = 60/image.length;



function getfeatured() {

currentdate = new Date();

core = currentdate.getSeconds();

core = Math.floor(core/ran);

var theimage = image[core];

var thelink = "<a href='"+links[core]+"' target='_blank' class='plain_right'>"+names[core]+"</a>";

var featuredsite = theimage+thelink.toString();

return(featuredsite);

}
