// Ghibli Quote Carousel 
// Thanks Rane!

$(document).ready(function(){
$('a.nextlink').click(function(){
		
	$('ul.quotes > li').each(function(){
		
		if ($(this).css('display') == 'list-item')
		{
			$(this).fadeOut('slow', function (){
				$(this).css('display', 'none');
				var next = $(this).next();

				if (next.length == 0)
					next = $('ul.quotes > li:first');
				
				next.fadeIn('slow', function(){
				next.css('display', 'list-item');
				});
			});
		}
		else if($(this).css('display') == 'block')
		{
			// gay ie
			$(this).fadeOut('slow', function (){
				$(this).css('display', 'none');
				var next = $(this).next();

				if (next.length == 0)
					next = $('ul.quotes > li:first');
				
				next.fadeIn('slow', function(){
				next.css('display', 'block');
				});
			});
		}
	});
	return false;
});
});

