$(document).ready(function() {
 
	$('#show_hide-1').hover(function(){ $(this).find('.tweet-text').fadeIn(150); }, function() { $(this).find('.tweet-text').fadeOut(100); });
	$('#show_hide-2').hover(function(){ $(this).find('.tweet-text').fadeIn(150); }, function() { $(this).find('.tweet-text').fadeOut(100); });
	$('#show_hide-3').hover(function(){ $(this).find('.tweet-text').fadeIn(150); }, function() { $(this).find('.tweet-text').fadeOut(100); });
	$('#show_hide-4').hover(function(){ $(this).find('.tweet-text').fadeIn(150); }, function() { $(this).find('.tweet-text').fadeOut(100); });
 
});
