rotateList = new Array("1","2","3","4");
listCt = rotateList.length;

// function chooseName() {
		if(document.getElementById) {
				randomNum = Math.floor((Math.random() * listCt));
				
				/* Rotation */
				if(rotateList[randomNum] == "1") {
					document.write("<a href='/challenge/thegoals/' title='Spelling our name with 11 yards of pizza was not one of the goals. (But we will accomplish that, too)'><img src='/challenge/localresources/images/features/"+rotateList[randomNum]+".jpg' alt='Spelling our name with 11 yards of pizza was not one of the goals. (But we will accomplish that, too)' /></a>\n");
				}
				if(rotateList[randomNum] == "2") {
					document.write("<a href='/challenge/thegoals/' title='Thanking everyone with a campus celebration was not one of the goals. (But we will accomplish that, too'><img src='/challenge/localresources/images/features/"+rotateList[randomNum]+".jpg' alt='Thanking everyone with a campus celebration was not one of the goals. (But we will accomplish that, too' /></a>\n");
				}
				if(rotateList[randomNum] == "3") {
					document.write("<a href='/challenge/thegoals/' title='Papering campus with mysterious banners was not one of the goals. (But we accomplished that, too'><img src='/challenge/localresources/images/features/"+rotateList[randomNum]+".jpg' alt='Papering campus with mysterious banners was not one of the goals. (But accomplished that, too' /></a>\n");
				}
				if(rotateList[randomNum] == "4") {
					document.write("<a href='/challenge/thegoals/' title='Giving away 6 new iPods was not one of the goals. (But we will accomplish that, too'><img src='/challenge/localresources/images/features/"+rotateList[randomNum]+".jpg' alt='Giving away 6 new iPods was not one of the goals. (But will accomplish that, too' /></a>\n");
				}
				/* End Rotation */
		}

