$(document).ready(function() {	
	$('div.items > div.status').livequery(function() {
		var $tweets = $('div.items > div.status');
		$tweets.each(function(i) {
			if (i % 2 !== 0) {
				$(this).css('backgroundColor', '#f8f8f8');
			};
		});
	});
	$('div.top-3 > div.prepend-1 .status').livequery(function() {
		var $replyTweets = $('div.top-3 > div.prepend-1 .status');
		$replyTweets.each(function(i) {
			if (i % 2 == 0) {
				$(this).css('backgroundColor', '#fff');
			};
		});
	});
});




