jQuery(document).ready(function() {	
	jQuery("a.delete").click(function() {
		var id = jQuery(this).attr('id');
		jQuery(this).parents('tr').fadeOut();
		jQuery.post('http://www.preservationalliance.com/programs/aai/index.php/inventory/delete/'+id);
		return false;
	});
	
});
