jQuery(document).ready(function(){
  jQuery("#expand_cart, #shrink_cart").click(function(){
    jQuery("#cart_expander_box").toggle("normal", function(){
      jQuery("#expand_cart, #shrink_cart").toggle();
    });
    i++;
  })
})