$(document).ready(function(){
								  
	$(function() {
			$('.icon-rss, .icon-facebook, .icon-twitter').hover(function(){
				$(this).animate({top:'-35px'},{queue:false,duration:300});
			}, function(){
				$(this).animate({top:'-55px'},{queue:false,duration:300});
			});
	   });
 });