jQuery(document).ready(function() {

	$("a.delete_product").each(function(i){
		$(this).click(function(){
			$('#delete_one').val($(this).attr("rel"));
			$('#event').val('DeleteProduct');
			$('#trash').submit();
		});
	});
	
	
	$("a.recalculate").each(function(i){
		$(this).click(function(){
			$('#event').val('Recalculate');
			$('#trash').submit();
		});
	
	
	});
	
	$("a.delete_all").each(function(i){
		$(this).click(function(){
			if(confirm("Вы действительно хотите отчистить корзину?")){
				$('#event').val('DeleteAll');
				$('#trash').submit();		
			}
		});
	});

});
