$(function() {
	$('#rssTab').hover(
		function(){
			$(this).stop().animate({
				top:25
			});
		},
		function(){
			$(this).stop().animate({
				top:0
			});
		}
	);
});