var nOv = 14;// _____var cap = new Array(nOv);cap[1] = "CNN's Richard Blystone reports on campaign commercials in Israel (May 15)";cap[2] = "Take a look at some Israeli political TV commercials (May 15)";cap[3] = "CNN's Jerrold Kessel reports on the Israeli campaign for prime minister (May 15)";cap[4] = "CNN's Jerrold Kessel reports on the election in Israel. (May 16)";cap[5] = "CNN's Richard Blystone reports on the most decorated man in Israel. (May 16)";cap[6] = "A major issue this year has been the economy. Israel is in a recession, and that has hurt  Netanyahu. CNN's Richard Blystone explains. (May 17)";cap[7] = "'The people have decided': Netanyahu concedes defeat and steps down as leader of the Likud Party (May 17)";cap[8] = "CNN's coverage of Barak's victory speech (May 17)";cap[9] = "'I don't think we'll have an easy ride,' Palestinian negotiator Saeb Erakat says, but he is hopeful about Barak's victory. (May 17)";cap[10] = "What do Palestinians think of the election results? CNN's Rula Amin finds out. (May 18)";cap[11] = "The Arab world breathed a sigh of relief with news of a new Israeli leader. CNN's Ben Wedeman probes the relationship between Arabs and Israel. (May 18)";cap[12] = "CNN's Jerrold Kessel reports on Israel in the aftermath of the election (May 18)";cap[13] = "CNN's Wolf Blitzer reports on the challenges facing Barak (May 18)";cap[14] = "Barak addresses supporters at Rabin Square (May 18)";// -----var title = new Array(nOv);title[1] = "The American way of campaigning has invaded Israel";title[2] = "Israel campaign ads";title[3] = "Withdrawal of minor candidates could sway Israeli election";title[4] = "Israel election now one-on-one as Mordechai, Begin quit";title[5] = "Ehud Barak profile";title[6] = "Economy a key factor in Israeli election";title[7] = "Netanyahu quits Likud leadership";title[8] = "Barak proclaims victory";title[9] = "Palestinian reaction to Barak's victory";title[10] = "Palestinians approve of Israeli prime minister-elect";title[11] = "Arabs say they're glad Netanyahu lost election";title[12] = "Barak stresses unity, faces reality";title[13] = "Barak faces tough job in forming Israeli government";title[14] = "Barak addresses supporters at Rabin Square";// -----var Vurl = new Array(nOv);Vurl[1] = "/video/world/1999/05/15/blystone.campaign.ap";Vurl[2] = "/video/world/1999/05/15/israel.campaign";Vurl[3] = "/video/world/1999/05/15/kessel.bibi.ap";Vurl[4] = "/video/world/1999/05/16/kessel.israel.reut";Vurl[5] = "/video/world/1999/05/16/blystone.barak.ap";Vurl[6] = "/video/world/1999/05/17/blystone.economy";Vurl[7] = "/video/world/1999/05/17/netanyahu.concession";Vurl[8] = "/video/world/1999/05/17/barak.victory.speech";Vurl[9] = "/video/world/1999/05/17/palestinian.reaction";Vurl[10] = "/video/world/1999/05/18/amin.palestinians";Vurl[11] = "/video/world/1999/05/18/wedeman.arab.reax.ap";Vurl[12] = "/video/world/1999/05/18/kessel.israel.reut";Vurl[13] = "/video/world/1999/05/18/blitzer.hope.reut";Vurl[14] = "/video/world/1999/05/17/barak.rabin.square";// -----// _____//	DONT PLAY WITH THE CODE BELOW// __________________________________var med = "ns";	// Defalt Stream Type - do not changevar str = "28";	// Defalt Stream Size - do not changevar a = 0; 		// Do not change!function forward() {	if ((a > 0) && (a <= (nOv -1))) {	// set the max number 1 less than the total number nOv;		 a++;		 swapImg(a);		 } else {		 a = 1;		 swapImg(a);		 }	}function back() {	if ((a > 1) && (a <= nOv)) {		a--;		swapImg(a);		} else {		a = nOv;		swapImg(a);		}	}function swapImg(a) {	document.control.caption.value = ((nOv - a) + 1) + ")" + cap[a];	return;	}function selected(a) {	if (a == 0) {		document.control.caption.value = "Select a video stream first!";		return;		} else {		vod(Vurl[a] + '.' + med + str + '.html' , title[a]);		return;		}	}