$(document).ready(function() {
	$('ul.product > li:nth-child(3n+1)').css('clear', 'left');
//	$('a.addToCartRedirectCheckout').click(function(event) {
//		event.preventDefault();
//		var a = $(this);
//		$.ajax({
//			type: 'post',
//			data: '',
//			url: '/' + languageIdentifier + '/webshop/place/' + $(this).attr('rel'),
//			success: function() {
//				window.location = $(a).attr('href');
//			}
//		});
//	});
	
	$('table.discountCodes tr td a:lt(' + ($('table.discountCodes tr td a').size() - 1) + ')').each(function() {
		
		$(this).remove();
		
	});
	
	$('a#addDiscountCode').click(function(event) {
		
		event.preventDefault();
		var table = $(this).closest('table');
		var row = $(this).closest('tr');
		var newRow = $(this).closest('tr').clone(true);
		$(row).find('a#addDiscountCode').remove();
		$(newRow).find('input').val('');
		$(newRow).find('span.icon').remove();
		$(table).append(newRow);
		
	});
	
	$('form[name=cartForm] input[type=checkbox][rel=discount]').remove();
	$('input[type=text]#discountcode').css('text-transform', 'uppercase');
	
});
