<!--//

/* Bariatrics Testimonial Rotater */

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];
  }
}
// name for each person
peep = new initArray(
"Cynthia Holobaugh",
"Jean Hummell",
"Stephanie Davis",
"Kevin Lewis"
);

// weight loss for each person
weight = new initArray(
"142+",										// Cynthia Holobaugh
"125+",										// Jean Hummell
"115+",										// Stephanie Davis
"180+"										// Kevin Lewis
);

// image path for each person
image = new initArray(
"/ContentImages/Bariatrics/test_ch.jpg",	// Cynthia Holobaugh
"/ContentImages/Bariatrics/test_jh.jpg",	// Jean Hummell
"/ContentImages/Bariatrics/test_sd.jpg",	// Stephanie Davis
"/ContentImages/Bariatrics/test_kl.jpg"		// Kevin Lewis
);

// testimonial for each person
text = new initArray(
// Cynthia Holobaugh
"Life is wonderful. I can now do the things I love to do like ride the motorcycle with my husband. I am free at last.",	
// Jean Hummell
"I have always wanted to be more physically active and carrying an extra 130 pounds made that truly impossible. Running and finishing the Disney World 1/2 Marathon was a dream come true!",
// Stephanie Davis
"I cannot even tell you how happy I am. I weigh less now than I did in high school.",
// Kevin Lewis
"Having this surgery has improved my life in ways I cannot describe in words. I was diabetic, hypertensive, and just generally unhealthy. Now, I am no longer any of those."
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var testName = peep[core];
var testWeight = weight[core];
var testImage = image[core];
var testText = text[core];

//-->
