$(document).ready(function() 
{
	if($('addToCart'))
	{
		// Gesamtpreis kalkulieren
		$('#changeAmount').change(function()
		{
			$('#currentCost').text(parseInt($('#price').text()) * parseInt($('#changeAmount').val()));
		});
		
		$('#add2CartLink').click(function()
		{
			$.post("/verkauf_ajax.php", { 'amount' : parseInt($('#changeAmount').val()), 'articleId' : $('#articleId').val(), 'action' : 'add2cart' },
				function(response) 
				{ 
					$('#addToCart').hide();
					$('#responseInfo').html(response);
					$('#responseInfo').removeClass('hidden');
				}
			);
		});	
	}
	
	$('a.deleteArticle').click(function()
	{
		var articleId = $(this).attr('rel');
		$.post("/verkauf_ajax.php",	{ 'articleId' : articleId, 'action' : 'deleteArticle' },
			function(response) 
			{ 
				$('#row_' + articleId).fadeOut();
				
				if(response == 0)
				{
					$('#cartDiv').fadeOut(1000, function()
					{
						$('#infoDiv').fadeIn();
					});
				}
				else
				{
					$('#cartSumSpan').html(response);
				}
			}
		);
	});
});
