$(document).ready(function() {
		$('a.delete').click(function(e) {
			e.preventDefault();
			var parent = $(this).parent();
			var remove = $('#remove-' + parent.attr('id'));
			
			$.ajax({
				type: 'get',
				url: 'http://www.flexoppas.nl/ajax_delete.php',
				data: 'delete=' + parent.attr('id').replace('record-',''),
				beforeSend: function() { 
				
				remove.animate({'backgroundColor':'#fb6c6c'},300);
				},
				success: function() { 
					remove.slideUp(300,function() {
						remove.remove();
					});
				}
			});
		});
	});
