onload=function() {
var tedPics = new Array()
tedPics[0] = "<img src='/music/images/homePg/ted_home1.jpg' width='165' height='206' alt='Ted Nugent' />";
tedPics[1] = "<img src='/music/images/homePg/ted_home2.jpg' width='165' height='206' alt='Ted Nugent' />";
tedPics[2] = "<img src='/music/images/homePg/ted_home3.jpg' width='165' height='206' alt='Ted Nugent' />";
tedPics[3] = "<img src='/music/images/homePg/ted_home4.jpg' width='165' height='206' alt='Ted Nugent' />";
tedPics[4] = "<img src='/music/images/homePg/ted_home5.jpg' width='165' height='206' alt='Ted Nugent' />";
tedPics[5] = "<img src='/music/images/homePg/ted_home6.jpg' width='165' height='206' alt='Ted Nugent' />";


var Q = tedPics.length;
var whichPic=Math.round(Math.random()*(Q-1));
var obj = document.getElementById("tedPics")
obj.innerHTML=tedPics[whichPic]
}
