$(document).ready(function(){
    $("ul.sidebar li.hover").hover(
      function () {
        $(this).stop().animate({ marginLeft: "10px" }, '350' );
     },
      function () {
        $(this).stop().animate({ marginLeft: "0px" }, 'fast' );
     });
});