    $(function() {
      var htmlStr = $('.thumb').html();
      showDiv(htmlStr);

      $('.thumb').click(function() {
        htmlStr = $(this).html();
        $('#info_img').fadeOut(600, function() { showDiv(htmlStr) });
      });

      function showDiv(htmlStr) {
        $('#info_img').html(htmlStr);
        $('#info_img img').attr({ width: 280 });
        $('#info_img').fadeIn(600);
      }
    });

