var quotes = new Array(
	{ 
		text: ' **** A remarkable result...doesn\'t feel like a feature debut, but a thriller from the hands of an experienced player', 
		author: 'The Dominion Post' 
	},
	{ 
		text: 'Smart writing...good acting...wonderful lines...an excellent ensemble...achieves moments of real tension - the literal revealing of the villain is a scene of some mastery', 
		author: 'Peter Calder, NZ Herald' 
	},
	{
		text: 'Beautifully shot...the story premise is intriguing and relevant...the circular irony is lovely and sharp',
		author: 'Jane Schoettle, Toronto Intl Film Festival'
	},
	{
		text: 'With polish and actorly flair....cunningly plotted mayhem of terror, suspicion and recrimination',
		author: 'Bill Gosden, New Zealand Film Fesival'
	},
	{
		text: ' **** The first New Zealand-made thriller in years that\'s actually worthy of the name',
		author: 'Film Review, The Dominion Post'
	},
	{ 
		text: 'An impressive piece of work...an excellent watch....lurid and compelling', 
		author: 'Graeme Tuckett, National Radio' 
	},
	{ 
		text: 'Uses the scenery brilliantly with sweeping aerial shots...looks stunning on the screen', 
		author: 'Darren Bevan, TVNZ' 
	},
	{ 
		text: 'With some great writing, directing and acting, it kept me gripped to the very end', 
		author: 'Voxy.co.nz' 
	}
);
var current_quote = 0;
function newQuote() {
	$('#reviewquote').fadeOut('slow', function() {
		var q = '<q>&quot;' + quotes[current_quote].text + '&quot;</q><br /><strong>' + quotes[current_quote].author + '</strong>';
		current_quote++;
		if(current_quote > quotes.length - 1) {
			current_quote = 0;
		}
		$('#reviewquote').html(q);
		$('#reviewquote').fadeIn('slow', function() {
			window.setTimeout('newQuote()', 4000);
		});
	});
}
$(document).ready(function() {
	$('#reviewquote').fadeOut('fast', function() {
		newQuote();
	});
});