
var comment = new Array
(
	"Wendell was kidnapped by a Japanese crime syndicate.  This is Fu Tzu.  Tzu has vowed to find Wendell and return him to safety!",
    "Wendell was accidentally poisoned at a food tasting contest. This is Frosty. Frosty is bravely standing in for Wendell and is entering every food tasting contest he can.",
    "Wendell was abducted by aliens. This is Donavan. Donavan is trying to make contact with the aliens to secure Wendell's release.",
    "Wendell is in the witness protection program. This is Anthony. Anthony is touring the country in search of Wendell.",
    "Wendell was wrongly imprisoned for a drug deal gone bad. This is Damian. Damian is working under cover to discover who the true culprit is.",
    "Wendell had to be taken away to a quiet place for a little while. This is Xzavier. Xzavier is currently working on his PhD thesis about the fragileness of the human mind.",
    "Wendell has gone fishing. This is Isaiah. Isaiah is not happy. He was left behind.",
    "Where is Wendell?  Who cares! This is Don, he takes a much better picture.",
	"Wendell is with his spiritual advisor in the Himalayas. This is Brayden. Isn't he a cute little devil!",
	"Wendell is at the North Pole looking for the real Santa.  This is Landen, one of Santa's little helpers.",
	"This is Brayden.  Brayden mistook Wendell for a pork chop and ate him."
);

var image = new Array
(
	"FrostyNinja.jpg",
    "FrostyYuk.jpg",
    "Don.jpg",
    "Anthony.jpg",
    "Damian.jpg",
    "Xzavier.jpg",
    "Isaiah.jpg",
    "Don2.jpg",
	"BraydenDevil.jpg",
	"Landen.jpg",
	"Brayden.JPG"
);

var ind = Math.floor(Math.random() * image.length);

var dir = 1;

function flipSanta()
{
	if (Math.random()>0.5) return;
	
	var santa = document.getElementById("santa");
	var img;
	
	if (dir == 1)
	{
		img = "Xmas/Images/Santa2.gif";
		dir = 2;
	}
	else
	{
		img = "Xmas/Images/Santa.gif";
		dir = 1;
	}
	santa.setAttribute("src",img);
}
			
function WhereIsWendell()
{
	var imgWIW = document.getElementById("imgWIW");
	imgWIW.src = "Images/MugShots/" + image[ind];
	
	setInterval("flipSanta()", 1000);	
}

