function quoteRotate(n) {
	
	cur = n;
	next = n+1;
	
	if (n==quotes.length-1){
		next=0;	
	}

	quotes.eq(cur).fadeOut(1800);	
	quotes.eq(next).fadeIn(1800);

	
	setTimeout("quoteRotate("+next+")",10000);
	
	
}

$(document).ready(function(){
	quotes = $('blockquote');
	setTimeout("quoteRotate(0)",10000);
});

