$(document).ready(function(){
	$('#quote_wrapper div').each(function(i) {
		$(this).attr("id", "quote" + i);
	});
	var quotes = $('#quote_wrapper div').size();
	var x = 0;
	$("#quote" + x).css('display' , 'block');
		$('.show-next').click(function() {
			$("#quote" + x).slideUp('fast');
				if(x < quotes - 1) {
					x++;
				}
				else {
					x = 0;
				}
			$("#quote" + x ).slideDown('slow');
		});
});
