diff --git a/www/index.php b/www/index.php
index d73b6ae1c58b2805cf2d6c0cca519e34de28b372..7bcc327f2f0aaa39c4bf4501028c21ffa769f22a 100644
--- a/www/index.php
+++ b/www/index.php
@@ -83,9 +83,9 @@ $page->maincontentarea .= '
   </noscript>
 </div>
 <div class="col right">
-    <h3 class="sec_header">Peoplefinder</h3>
+    <h3 class="sec_header">UNL Directory</h3>
     <div id="ppl_results"></div>
-    <a href="http://www1.unl.edu/wdn/wiki/About_Peoplefinder">About Peoplefinder</a>
+    <a href="http://www1.unl.edu/wdn/wiki/About_Peoplefinder">About the UNL Directory</a>
 </div>
 <div class="three_col left">
     '.$local_results.'
diff --git a/www/searchFunc.js b/www/searchFunc.js
index b51abd23e4ab57ac5dd32e0346cdd9f7aff56b63..518db6bf996f34c08178f3559617ae55d7c9dc8b 100644
--- a/www/searchFunc.js
+++ b/www/searchFunc.js
@@ -150,7 +150,7 @@ UNL_Search.doPeoplefinderQuery = function (val) {
 		this.handlePeoplefinderResults(cacheData);
 	} else {
 		var pointer = this;
-		WDN.get("http://peoplefinder.unl.edu/service.php?q=" + val, null, function(data, textStatus) {
+		WDN.get("http://directory.unl.edu/service.php?q=" + val, null, function(data, textStatus) {
 			pointer.peoplefinderCache.save(val, data);
 			UNL_Search.handlePeoplefinderResults(data);
 		});
@@ -186,7 +186,7 @@ UNL_Search.showHCard = function (ele, href) {
 	} else {
 		var http = new XMLHTTP();
 		
-		http.open("GET", "http://peoplefinder.unl.edu/hcards/" + uid, true);
+		http.open("GET", "http://directory.unl.edu/hcards/" + uid, true);
 		var pointer = this;
 		http.onreadystatechange = function() {
 			if (http.readyState == 4) {