$(function(){
		$('.produtos').click(function(){
			var id = $(this).attr('rel');
			$.ajax({
				type: "POST",
				url: "carrinho.ajax.php",
				data: "action=adicionar&id="+id,
				success: function(resposta){
					$("#dialog").html(resposta);
					$( "#dialog:ui-dialog" ).dialog( "destroy" );
	
					$( "#dialog" ).dialog({
						resizable: false,
						width: 380,
						height:130,
						modal: true,
						buttons: {
							"Continuar Comprando": function() {
								$(this).dialog( "close" );
							},
							"Finalizar a compra": function() {
								$(this).dialog( "close" );
								$(window.document.location).attr('href',"carrinho.php");
							}
						}
					});
				}
			});
		});
		
		$('#table_carrinho td a.remover').click(function(){
			var id = $(this).attr('rel');
			var linha = $(this).parent().parent();
			$.ajax({
				type: "POST",
				url: "carrinho.ajax.php",
				data: "action=remover&id="+id,
				dataType: 'json',
				success: function(r){
					if(r.redir==true){
							$(window.document.location).attr('href',"index.php");
					}else{
						$("#carrinhoTotal").html(r.total);
						$("#produtos").html(r.prods);
						$("#dialog").html(r.mensagem);
						$( "#dialog:ui-dialog" ).dialog( "destroy" );
						linha.remove();
						$( "#dialog" ).dialog({
							resizable: false,
							width: 380,
							height:130,
							modal: true,
							buttons: {
								"OK": function() {
									$(this).dialog( "close" );
								}
							}
						});
					}
				}
			});
		});
		
});
