﻿$(function(){
  var lastOpened = undefined;
  var current = undefined;
  $(".item > :not(.order_photos)").click(function(){
    if (typeof(lastOpened)!="undefined"){
      lastOpened.find(".order_photos:visible").slideToggle("slow");
      if (lastOpened.get(0) == $(this).parent().get(0)) return;
    }
    lastOpened = $(this).parent();
    lastOpened.find(".order_photos").slideToggle("slow");
  });
  $(".item .order_product").click(function(e){
    e.stopPropagation();
    $.post("/explorer/305/", {"order_cart_uid":$(this).attr("cart_uid")}, function(data){alert("Фото добавлено в текущий заказ.")});
    
  });
});
