$(function(){
	$.ajax({
		url: '/carrinho/topo.ajax',
		loader: {
			selector: '#CarrinhoLoader',
			wait: 50
		},
		dataType: 'html',
		context: $('#CarrinhoContainer'),
		success: function(data){
			$(this).html(data);
			$('#CarrinhoContainer').ajaxComplete(function(e, xhr, opt){
				if(opt.reloadCarrinho == true) {
					var data = jQuery.parseJSON(xhr.responseText);
					if(data.type == 'success') {
						$.ajax({
							url: '/carrinho/topo.ajax',
							dataType: 'html',
							context: this,
							success: function(response){
								$(this).html(response);
								$(this).find('div.hide-carrinho').trigger('showCarrinho');
								$(this).find('div.topo-carrinho').trigger('showProdutos');
								$(window).trigger('scroll');
							}
						});
					}
				}
			});
		}
	});
});
