$(document).ready(function(){
   $("div.item_container").hover(
      function () {
          var anim = $('div:first', this);
          anim.animate({
             marginLeft: "-35px",
             width: "21px"
          }, 200, 'swing');
      },
      function () {
         $(this).find('div:first').animate({
            marginLeft: "-18px",
            width: "4px"
         }, 200, 'swing');
      }
   );
});

$(function() {
   $('#gallery a').lightBox({fixedNavigation:true});
});
