var List = {

	start: function() {
		this.remove();
	},

	remove: function() {
		jQuery('a[href*=remove]').click(function() {
			var a = jQuery(this);
			jQuery.ajax({
				url: a.attr('href'),
				success: function(msg) {
					location.reload();
				}
			});
 			return false;				
		});
	}

};

jQuery().ready(function() { List.start(); });
