// JavaScript Documentvar allMovies = new Array('chiatdays');var playing = "";function playReel(movie) {	closeReel();	var thumb = document.getElementById(movie+"_thumb");	var container = document.getElementById(movie+"_mov");	thumb.style.display = "none";	container.style.display = "";	playing = movie;	if (navigator.appName.substring(0,9) == "Microsoft") setTimeout('document["'+movie+'"].Play();', 100);}function closeReel() {	try {		if (playing != "" && document[playing]) {			document[playing].Stop();			document[playing].Rewind();		}	}	catch(e) {}	for (var i=0; i<allMovies.length; i++) {		var container = document.getElementById(allMovies[i]+"_mov");		var thumb = document.getElementById(allMovies[i]+"_thumb");		if (container.style.display != "none") container.style.display = "none";		if (thumb.style.display != "") thumb.style.display = "";	}	playing = "";}
