$(document).ready( function(){
	$('a.delete').bind("click", function(event){event.preventDefault();});
});

	function removeFromCart(user,id) {
		if(confirm('Are you sure you want to remove this item? There is no undo.')) {
			
			$('#ruser').val(user);
			$('#rid').val(id);
			document.remove.submit();
					
		}
	}