$(document).ready(function() {
		var ch = $('.twitterBlock').height();
		$('.twitterContainer').removeClass('loading');
		$('.twitterBlock > p').each(function() {
				if(ch > $(this).position().top +$(this).outerHeight()) {
					$(this).css({
							'visibility': 'visible'
						});
				}
			});		
	});
