var quotes = new Array();
quotes[0] = "&ldquo;Sharply funny and a winner all the way, Lee not only pokes fun of L.A., subcultures and the documentary form, but also herself.&rdquo;<BR><BR><B>-- G. Allen Johnson, San Francisco Chronicle</B>";
quotes[1] = "&ldquo;...a clever and tightly woven tale of a filmmaker a little too deep into the lives of her subjects.&rdquo;<BR><BR><B>Aint-it-Cool News</B>";
quotes[2] = "&ldquo;But the mere fact that Lee can make both a media satire and, in the end, a creepy horror flick, while at least alluding to bigger social issues, suggests the breadth of her wit and intelligence.&rdquo;<BR><BR><B>-- Andrew O'Hehir, salon.com</B>";
quotes[3] = "&ldquo;American Zombie is definitely shambling towards greatness.&rdquo;<BR><BR><B><a href=http://www.stomptokyo.com>www.stomptokyo.com</a></B>";
quotes[4] = "&ldquo;American Zombie is a fresh, entertaining, and creatively awesome take on the whole zombie genre.&rdquo;<BR>&ldquo;...highly original and funny.&rdquo;<BR><BR><B>-- SLUG Magazine (Salt Lake Underground)</B>";
quotes[5] = "&ldquo;...all in all, a very clever, inventive and creepy follow-up to The Grace Lee Project.&rdquo;<BR><BR><B><a href=http://www.angryasianman.com>www.angryasianman.com</a></B>";
quotes[6] = "&ldquo;Director Lee mines a rich vein in darkly funny portraits of dysfunctional dead folk.&rdquo;<BR><BR><B>-- Stephen Dark, Salt Lake City Weekly</B>";
quotes[7] = "&ldquo;bone-nicking Swiftian satire...&rdquo;<BR><BR><B>-- LA Weekly</B>";
quotes[8] = "&ldquo;American Zombie brilliantly satirizes documentaries about identity politics and minority images.&rdquo;<BR><BR><B>-- Chicago Sun-Times</B>";
quotes[9] = "&ldquo;American Zombie is the must-see zombie movie of the year.&rdquo;<BR><BR><B><A HREF=http://zombiereportingcenter.com>zombiereportingcenter.com</A></B>";
document.getElementById('quote_box').innerHTML=quotes[0];

function quote1() {
	document.getElementById('quote_box').innerHTML=quotes[1];
	setTimeout(quote2, 5000);
}
function quote2() {
	document.getElementById('quote_box').innerHTML=quotes[2];
	setTimeout(quote3, 5000);
}
function quote3() {
	document.getElementById('quote_box').innerHTML=quotes[3];
	setTimeout(quote4, 5000);
}
function quote4() {
	document.getElementById('quote_box').innerHTML=quotes[4];
	setTimeout(quote5, 5000);
}
function quote5() {
	document.getElementById('quote_box').innerHTML=quotes[5];
	setTimeout(quote6, 5000);
}
function quote6() {
	document.getElementById('quote_box').innerHTML=quotes[6];
	setTimeout(quote7, 5000);
}
function quote7() {
	document.getElementById('quote_box').innerHTML=quotes[7];
	setTimeout(quote8, 5000);
}
function quote8() {
	document.getElementById('quote_box').innerHTML=quotes[8];
	setTimeout(quote9, 5000);
}
function quote9() {
	document.getElementById('quote_box').innerHTML=quotes[9];
}

function imageOn(i) {
	if (document.images) {
		document.images["btn" + i].src = onImgArray[i].src
	}
}
function imageOff(i) {
	if (document.images) {
		document.images["btn" + i].src = offImgArray[i].src
	}
}

