// $Id: uc_cart_block.js,v 1.7.2.6 2008/10/07 15:47:57 rszrama Exp $

/**
 * Collapse the shopping cart block at page load.
 */
 /**
  * Collapse the shopping cart block at page load.
  */
 $(document).ready(function(){
   // modification: call the phoenix cookie toggle to remember the state between pages (just try so this file isn't dependent on sites/all/modules/phoenix/phoenix.js):
   try {
 		if(!Drupal.Phoenix.isCartDetailExpanded()) {
 			$('#block-cart-contents').hide(0);
 		  $('#block-cart-title-arrow').attr('src', uc_cart_path + '/images/bullet-arrow-down.gif');
 		}
 		else
 		  $('#block-cart-title-arrow').attr('src', uc_cart_path + '/images/bullet-arrow-up.gif');
 	}
 	catch(e) {
 		if (collapsed_block == true) {
 			$('#block-cart-contents').hide(0);
 		}
 	}

   $('.cart-block-toggle').bind('click.ubercart',function() { cart_block_toggle(); } );
 });

 /**
  * Toggle the shopping cart block open and closed.
  */
 function cart_block_toggle() {

   $('#block-cart-contents').slideToggle();

   isrc = $('#block-cart-title-arrow').attr('src');
   if (isrc.toLowerCase().match("up") != null) {
     $('#block-cart-title-arrow').attr('src', uc_cart_path + '/images/bullet-arrow-down.gif');
   }
   else {
     $('#block-cart-title-arrow').attr('src', uc_cart_path + '/images/bullet-arrow-up.gif');
   }
 }                                                                             
