$(function() { 

  // Hover animation on usernav for non-webkit browsers
  $('#usernav').hover(function() {
    $(this).stop().animate({ paddingTop: '5px' }, 300 );
  }, function() {
    $(this).stop().animate({ paddingTop: '0px' }, 400 );
  });
  
});