<!--
	strCaptions = new Array();
	strCaptions[0] = "EPISODE 1";
	strCaptions[1] = "EPISODE 2";
	strCaptions[2] = "EPISODE 3";
	strCaptions[3] = "EPISODE 4";
	strCaptions[4] = "EPISODE 5";
	strCaptions[5] = "EPISODE 6";
	strCaptions[6] = "EPISODE 7";
	strCaptions[7] = "EPISODE 8";
	strCaptions[8] = "EPISODE 9";
	strCaptions[9] = "EPISODE 10";
	strCaptions[10] = "EPISODE 11";
	strCaptions[11] = "EPISODE 12";
	
	strCaptions2 = new Array();
	strCaptions2[0] = "TOM TAKES A TUMBLE";
	strCaptions2[1] = "AU REVOIR MICHELLE";
	strCaptions2[2] = "STRATEGIC MOVE: MYCHAEL OUSTED";
	strCaptions2[3] = "ONE MAN DOWN";
	strCaptions2[4] = "MARGO IS CUT";
	strCaptions2[5] = "DENISE DITCHED";
	strCaptions2[6] = "KIMBERLY CANNED";
	strCaptions2[7] = "DARLENE OUT, KIMBERLY IN";
	strCaptions2[8] = "KIMBERLY WINS";
	strCaptions2[9] = "";
	strCaptions2[10] = "";
	strCaptions2[11] = "";
	
function cText(num) {
	if (document.getElementById) { // Netscape 6, Internet Explorer 5
		document.getElementById('aSpan').innerHTML = strCaptions[num];
		document.getElementById('aSpan2').innerHTML = strCaptions2[num];
	} else {
		if (document.all) { // Internet Explorer 4
			document.all.aSpan.innerHTML = strCaptions[num];
			document.all.aSpan2.innerHTML = strCaptions2[num];
		}
	}
}
-->