$(document).ready(function() {
  
  $('#header #top-line-middle ul li.yt a, #header #top-line-middle ul li.fcb a, #header #top-line-middle ul li.rss a').hover(function () {
    $(this).closest('li').animate({'margin-top': '5px'}, 150);

   }, 
  function () {
    $(this).closest('li').animate({'margin-top': '0px'}, 150);

   }
  );  
    
});

