--- sites\all\modules\nat\nat.module	Sat Jun 30 06:58:46 2007
+++ sites\all\modules\nat\natNew.module	Fri Jun 27 11:02:29 2008
@@ -597,6 +597,14 @@ function _nat_delete_terms($nid) {
 function _nat_save_association($nid, $terms) {
   foreach ($terms as $term) {
     db_query("INSERT INTO {nat} (nid, tid, vid) VALUES (%d, %d, %d)", $nid, $term['tid'], $term['vid']);
+	
+	// 2008.06.26 // MWO // 
+	//----------------------------------------------------------------
+	//  Added an additional insert into the term_node table so that
+	//	the term for the $node->type being created is also associated
+	//  with the node itself.
+	//----------------------------------------------------------------
+	db_query("INSERT INTO {term_node} (nid, tid) VALUES ($nid, " . $term['tid'] . ")");
   }
 }
 
