$(function() {
	
	var first = $('ul#twitter_update_list li:nth-child(1)').html();
	var second = $('ul#twitter_update_list li:nth-child(2)').html();
	var third = $('ul#twitter_update_list li:nth-child(3)').html();
	var fourth = $('ul#twitter_update_list li:nth-child(4)').html();
	var fifth = $('ul#twitter_update_list li:nth-child(5)').html();
	
	function loopthrough() {
		
	$('#post2 #list').html(first).hide().fadeIn(5000, function() {
		$('#post2 #list').html(first).fadeOut(5000, function() {
			$('#post2 #list').html(second).hide().fadeIn(5000, function() {
				$('#post2 #list').html(second).fadeOut(5000, function() {
					$('#post2 #list').html(third).hide().fadeIn(5000, function() {
						$('#post2 #list').html(third).fadeOut(5000, function() {
							$('#post2 #list').html(fourth).hide().fadeIn(5000, function() {
								$('#post2 #list').html(fourth).fadeOut(5000, function() {
									$('#post2 #list').html(fifth).hide().fadeIn(5000, function() {
										$('#post2 #list').html(fifth).fadeOut(5000, function() {
											loopthrough();
										});
									});
								});
							});
						
						});
					});
				});
			});
		});
	});
	
	}
	
	loopthrough();

});
