			var player;
			var currentMovie=0;
			var movies =new Array(
				'http://www.youtube.com/v/MZd6s74UPl0&hl=en&fs=1&autoplay=1',
				'http://www.youtube.com/v/nXJkqYf-LNU&hl=en&fs=1&autoplay=1',
				'http://www.youtube.com/v/8tdWRzmA5ZE&hl=en&fs=1&autoplay=1'
			);

			var captions = new Array(
				'Ending the Fight with Dr. Kirstin Snow, Ph.D. Pt.1',
				'Ending the Fight with Dr. Kirstin Snow, Ph.D. Pt.1',
				'Ending the Fight with Doug Eberhart Pt.3'
			);
			function onYouTubePlayerReady(playerId) {
				if ( navigator.appName == "Microsoft Internet Explorer"){
					player = document.getElementById("xx");
				} else {
					player = document.getElementById("x");		
				}
				player.addEventListener("onStateChange", "listenForMovieEnd");
			}
			function listenForMovieEnd(event){
				if( event == 0 && movies.length > currentMovie){
					loadNewVideo("VidName","VCaption",currentMovie+1);
				}
			}
			function loadNewVideo(VidName,VCaption,mno){
				str = "<!--[if IE]>" +
					"<object width='425' height='344' id='xx'  type='application/x-shockwave-flash' >" +
					"	<param name='movie' value='"+movies[mno]+"'></param>" +
					"	<param name='allowFullScreen' value='true'></param>" +
					"	<param name='allowScriptAccess' value='always'></param>" +
					"<![endif]-->" +
					"	<embed id='x'" +
					"		src='"+movies[mno]+"' " +
					"		type='application/x-shockwave-flash' " +
					"		allowfullscreen='true' " +
					"		width='425' " +
					"		height='344'" +
					"		allowScriptAccess='always'>" +
					"	</embed>" +
					"<!--[if IE]>" +
					"</object>	" +
					"<![endif]-->" ;
				document.getElementById("VidName").innerHTML = str;
				//document.getElementById(VCaption).innerHTML = captions[mno];
				currentMovie= mno;
			}
