function getFlashMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
};

function playChapter(chapter) {
	getFlashMovie("VideoPlayer").chapterRequestFromJavascript(chapter);
};

function highlightChapter(chapter)
{
	$("#questions a").removeClass("selected");
	$("#questions a").eq(chapter).addClass("selected");
}

$(document).ready(
	function()
	{
		$("#questions a").each(
			function(index)
			{
				$(this).click(
					function (event)
					{
						playChapter(index);
						return false;
					}
				);
			}
		);
	}
);