jQuery.empty() Kills Event Binding On Persistent Nodes

function Add(){
	// Rebind the SPAN methods.
	jSpan
		.click( Remove )
		.hover( Bold, Unbold )
	;
 
	// Add the Span back in.
	jP.append( jSpan );
}

For Cut-and-Paste