$(document).ready(function() {
 $('#naver li')
  .hover(function() {
   $(this).stop().animate({ left: -20,backgroundColor: '#112112',borderBottomColor: '#000' }, 'fast');
  }, function() {
   $(this).stop().animate({ left: 10,backgroundColor: '#000',borderBottomColor: '#B4B4B4' }, 'fast');
  });
});
$('input').focus(function() {css("border","1px solid #E1A729")});

