$(function() {
  $("#sidebar").css("opacity", 1);
  $("#sidebar").animate({opacity: .2}, 3000);
  $("#sidebar").hover(
      function() {
          $(this).stop();
          $(this).animate({opacity: 1}, 'slow');
      },
      function() {
          $(this).stop();
          $(this).animate({opacity: 0.2}, 'slow');
      }
);
});

