$(document).ready(function() {
		
	$('[name*="delete_product_"]').bind('click', deletePersonel);
	$('[name*="update_cesta"]').bind('click', updateCesta);
	$('[name*="resumen_cesta"]').bind('click', resumenCesta);
	$('[name*="continue_cesta"]').bind('click', continueCesta);
		
	function deletePersonel() {
		if(confirm(String.fromCharCode(191)+'Desea eliminar el producto?')) {			
			var but = $(this);
			var arrayString = $(this).attr('name').split('_');						
			window.location = '/es/carrito/eliminarproducto/id/' + arrayString[2]; 
		}
	}	
	
	function updateCesta() {
		$('#action').val('refresh');
		$('#cart').submit();
	}
	
	function resumenCesta() {
		window.location = '/es/carrito/resumencompra/'; 		
	}	
	
	function continueCesta() {
		$('#compra').submit();
	}
	
	
});
