/**
* Copyright 2010, Thomas Klokosch <thomas.klokosch@me.com>
*/

$(document).ready(function(){

  //if($("#billing_address_is_shipping_address").is(':checked')) $("#shipping_address").show();
  $("#shipping_address_different").bind("change", function(){
    if($(this).is(':checked')) {
      $("#shipping_address").show();
    } else {
      $("#shipping_address").hide();
    }
  });

  $(".tx-t3shop-shipping").bind("change", function(){
    $(this).parents(".tx-t3shop-shippingForm").submit();
  });


  $(".tx-t3shop-attribute").bind("change", function(){
    $(this).parents(".tx-t3shop-attributeForm").submit();
  });

  $(".collapseAttributes").click(function(){
    if($(this).parents("tr").next(".attributes").is(':hidden')) {
      $(this).parents("tr").next(".attributes").show();
    } else {
      $(this).parents("tr").next(".attributes").hide();
    }
    return false;
  });

  if($(".cartAmount").text()){ $(".cart_notice_checkout").show(); };
});

