$(document).ready(function(){
  $("#nav-icons a").hover(function(){
    $(this).find("em").stop(true, true).fadeIn(400);
  }, function(){
    $(this).find("em").stop(true, true).fadeOut(900); 
  });
  
  $("#social-media a").click(function(){
    $(this).attr("target", "_blank"); 
  });
});
