// Quote rotation banner
var imgs = ['images/index-quote-01.png',
			'images/index-quote-02.png',
			'images/index-quote-03.png',
			'images/index-quote-04.png',
			'images/index-quote-05.png',
			'images/index-quote-06.png',
			'images/index-quote-07.png',
			'images/index-quote-08.png',
			'images/index-quote-09.png'];
var cur_quote = 0;


$(document).ready(function ()
{
	setTimeout('nextQuote()', 5000);
});

function nextQuote()
{
	var img = $('#content img');
	cur_quote++;
	if (cur_quote > imgs.length-1)
		cur_quote = 0;

	img.animate({opacity:0}, 500, function()
	{
		img.attr('src', imgs[cur_quote]);
		img.animate({opacity:1}, 500, function()
		{
			setTimeout('nextQuote()',5000);
		});
	});
}
