<!--//

/* Stroke Symptoms 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];
  }
}
// each symptom
what = new initArray(
"Numbness",
"Confusion",
"Dizziness",
"Headache",
"Vision problems"
);

// image path for each symptom
image = new initArray(
"/ContentImages/StrokeCare/scsect_sympt1.gif",	// Numbness
"/ContentImages/StrokeCare/scsect_sympt2.gif",	// Confusion
"/ContentImages/StrokeCare/scsect_sympt3.gif",	// Dizziness
"/ContentImages/StrokeCare/scsect_sympt4.gif",	// Headache
"/ContentImages/StrokeCare/scsect_sympt5.gif"	// Vision
);

// text for each symptom
text = new initArray(
// Numbness
"Numbness, weakness or paralysis of the face, arm or leg, especially on one side of the body",	
// Confusion
"Confusion, such as trouble speaking or under standing",
// Dizziness
"Trouble walking, dizziness, loss of balance or coordination",
// Headache
"Severe headache without any known cause",
// Vision
"Vision problems in one or both eyes, such as double vision or loss of eyesight"
);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var strokeSymptom = what[core];
var strokeImage = image[core];
var strokeText = text[core];

//-->
