<!--
// 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 = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
"testimonials.html",
"testimonials.html",
"testimonials.html",
"testimonials.html",
"testimonials.html",
"testimonials.html"
);

text = new initArray(
"ADN Testimonial",
"ADN Testimonial",
"ADN Testimonial",
"ADN Testimonial",
"ADN Testimonial",
"ADN Testimonial"
);

image1 = new initArray(
"images/graphics/Testimonial-1.gif",
"images/graphics/Testimonial-2.gif",
"images/graphics/Testimonial-3.gif",
"images/graphics/Testimonial-4.gif",
"images/graphics/Testimonial-5.gif",
"images/graphics/Testimonial-6.gif"
);

image2 = new initArray(
"images/graphics/Testimonial-7.gif",
"images/graphics/Testimonial-8.gif",
"images/graphics/Testimonial-9.gif",
"images/graphics/Testimonial-10.gif",
"images/graphics/Testimonial-11.gif",
"images/graphics/Testimonial-12.gif"
);

imageACR1 = new initArray(
"images/graphics/Testimonial-7.gif",
"images/graphics/Testimonial-8.gif",
"images/graphics/Testimonial-9.gif",
"images/graphics/Testimonial-10.gif"
);

imageACR2 = new initArray(
"images/graphics/Testimonial-11.gif",
"images/graphics/Testimonial-12.gif"
);

function showImage1(){

var currentdate = new Date();
var core = currentdate.getSeconds() % image1.length;
var ranlink  = link[core];
var ranimage = image1[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');
}

function showImage2(){

var currentdate = new Date();
var core = currentdate.getSeconds() % image2.length;
var ranlink  = link[core];
var ranimage = image2[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');
}

function showImageACR1(){

var currentdate = new Date();
var core = currentdate.getSeconds() % imageACR1.length;
var ranlink  = link[core];
var ranimage = imageACR1[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');
}

function showImageACR2(){

var currentdate = new Date();
var core = currentdate.getSeconds() % imageACR2.length;
var ranlink  = link[core];
var ranimage = imageACR2[core];
var rantext  = text[core];

document.write('<a href=\"' +ranlink+ '\"><img src=\"'+ranimage+'\" border="0" alt=\"'+rantext+'\"></a>');
}
//-->



//  End -->