$(document).ready(function() {
  
  // rollover
  $('li.sbicon a img').rollover(true);
  
  // survol sur le menu social bookmark
  $('ul.sbicons_lateral li').hover(
    function() {
      $(this).css('left', '-11px');
      $(this).css('width', '31px');
    },
    function() {
      $(this).css('left', '0');
      $(this).css('width', '20px');
    }
  );
  
});

