var ShoppCartAjaxHandler = function (cart) {
	(function($) {
		
		$('#added').remove();
		
		var item = $('#shopp-cart-ajax');
		item.empty().hide();
		
		$('#cart-overview .items .quantity').html(cart.Totals.quantity)
		
		// if ( cart.Item.thumbnail ) $('<img src="' + cart.Item.thumbnail.uri + '" alt="" width="' + cart.Item.thumbnail.width +'"  height="' + cart.Item.thumbnail.height + '" class="alignleft cartimage" />').appendTo(item);
		// $('<div></div>').html(cart.Item.name + ', was added to your cart. &ndash; <strong>'  + asMoney(cart.Item.unitprice) + '</strong>').appendTo(item);
		// $('<h2 class="price"></h2>').html(asMoney(cart.Item.unitprice)).appendTo(item);

		// $.prettyPhoto.open('#shopp-cart-ajax');
		$('<div id="added"></div>').html(cart.Item.name + ', was added to your cart. &ndash; <strong>'  + asMoney(cart.Item.unitprice) + '</strong>').appendTo('body').fadeIn('slow', function() {
			
			setTimeout(function() {
				$('#added').fadeOut('slow', function () {
					$('#added').remove();
				});
			}, 2000);
			
		});

	})(jQuery)
}