123456
	$('.remove').live('click', function() {
    $(this).parent().fadeOut(300, function(){
    	$(this).empty();
    	return false;
	});
});