$(function(){
  $(".addtocartBtn").click(function(){
    var _t = $(this);
    _t.attr("disabled", "disabled");
    $.ajax({
      url: "/store/addtocart/" +_t.attr("prodId"),
      success: function(txt){
        _t.text(txt);
        _t.attr("disabled", "");
      }
    });
  });
  $(".part1").each(function(){
    var img = $(this).find(".image");
    $(this).find(".thumbnail input").click(function(e){
      e.preventDefault();
      img.modal();
    });
  });
  $("#more").click(function(){
    $("#msg").slideToggle("fast", function(){
      if($("#msg:first").is(":hidden")){
        $("#more").css("background", "url(/files/arrow-dn.jpg) center");
      }else{
        $("#more").css("background", "url(/files/arrow-up.jpg) center");
      }
    });
  });
});
