Всем привет, не обновляется анимация при добавлении товара в корзину - 
http://prntscr.com/aofawh
Вот сама функция:
 
if ( jQuery( 'div.wpsc_cart_loading' ).length  ) {
		if ( ! ( jQuery( 'table.wpsc_checkout_table' ).length && jQuery( '.wpsc_buy_button' ).length) ) {
			jQuery( 'div.wpsc_cart_loading' ).ready( function(){
					form_values = { action : 'get_cart' };
				jQuery.ajax({
					type : "post",
					dataType : "html",
					url : wpsc_ajax.ajaxurl,
					data : {action : 'get_cart'},
					success: function (response) {
						jQuery( 'div.shopping-cart-wrapper' ).html( response );
						jQuery('div.wpsc_loading_animation').css('visibili  ty', 'hidden');
					},
					error: function (result) {
						jQuery( 'div.shopping-cart-wrapper' ).html( wpsc_ajax.ajax_get_cart_error );
						jQuery('div.wpsc_loading_animation').css('visibili  ty', 'hidden');
					}
				});
			});
		}
	}
Сайт 
http://jclock3.ru/products-page/catalog/ostap-2/
Помогите пожалуйста, в чем причина?