$(document).ready(
  function() {

    $('.box_wrapper.float_left').mouseenter(function() {
      $('.box_panel', this).show();
    });

    $('.box_wrapper.float_left').mouseleave(function() {
      sel = $('.box_panel', this);
      if (sel.data('autoshow') != true) {
        sel.hide(200);
      }
    });

    $('.goods img, .thumbnail').mouseenter(function() {
      $(this).animate({opacity: 0.8}, 200).animate({opacity: 1.0}, 200);
    });

    $('.thumbnail').click(function() {
      var src = this.src.replace('sml', 'img');
      $('#image').animate({opacity: 0}, 100, function() {
        $(this).get(0).src = src;
      })
    });

//    $('#image, goods img').css({opacity: 0});

    $('#image').load(function() {
      $(this).animate({opacity: 1.0}, 100);
    });

  }
);


showPanelShoppingBasket = function() {
  $('#shopping_basket').data('autoshow', true).fadeIn(500, function() {
    setTimeout(function() {
      $('#shopping_basket').data('autoshow', false).hide(200);
    }, 1500);
  });
};

