$(function(){
$(".nav li").hover(
  function (){
   $(this).find(".bg").stop().animate({width:"0"},0).animate({width:"100%"},300);
   }, 
  function (){
   $(this).find(".bg").stop().animate({width:"100%"},0).animate({width:"0"},200);
});
});
