$(document).ready(function(){
	$("#top_tweet01").hover(function(){
		$(this).css('z-index', '99');
	},function(){
		$(this).css('z-index', '5');
	})

	$("#top_tweet02").hover(function(){
		$(this).css('z-index', '99');
	},function(){
		$(this).css('z-index', '4');
	})

	$("#top_tweet03").hover(function(){
		$(this).css('z-index', '99');
	},function(){
		$(this).css('z-index', '3');
	})

	$("#top_tweet04").hover(function(){
		$(this).css('z-index', '99');
	},function(){
		$(this).css('z-index', '2');
	})

	$("#top_tweet05").hover(function(){
		$(this).css('z-index', '99');
	},function(){
		$(this).css('z-index', '1');
	})
});
