var ShoppCartAjaxHandler = function (cart) {
	(function($) {
		var display = $('#shopp-cart-ajax');
		display.empty().hide(); // clear any previous additions
		var item = $('<ul class="sidecart_list"></ul>').appendTo(display);
		//console.debug(cart);
		$.each(cart.Contents, function() {
			$('<li></li>').html('<strong>'+this.quantity+'</strong> x '+this.name).appendTo(item);
		});
		$('<li></li>').html('<strong>Subotal</strong> '+asMoney(cart.Totals.subtotal)).appendTo(item);
		$('<li></li>').html('<strong>Shipping</strong> '+asMoney(cart.Totals.shipping)).appendTo(item);
 		$('<li></li>').html('<strong>Total</strong> '+asMoney(cart.Totals.total)).appendTo(item);
		if ($('#shopp-cart-items').length > 0) {
			$('#shopp-cart-items').html(cart.Totals.quantity);
			$('#shopp-cart-total').html(cart.Item.name);			
		} else {
			
			$('.widget_shoppcartwidget p.status').html('<p class="status_info"><strong><span id="shopp-cart-items">'+cart.Totals.quantity+'</span></strong> x <span id="shopp-cart-total">'+cart.Item.name+'</span></p><p class="status_info"><strong>Subtotal</strong> <span id="shopp-cart-subtotal">'+asMoney(cart.Totals.subtotal)+'</span></p><p class="status_info"><strong>Shipping</strong> <span id="shopp-cart-shipping">'+asMoney(cart.Totals.shipping)+'</span></p><p class="status_info"><strong>Total</strong> <span id="shopp-cart-total">'+asMoney(cart.Totals.total)+'</span></p><br /><p><a href="shop/cart">Edit shopping cart</a></p>');
			
		}
		display.slideDown();
	})(jQuery)	
}