diff --git a/README b/README
index 5526fab2eb97b632cd1a28c5f707f7763995587b..4baef5fef883ec2c44ed8a08298c930a76e96b22 100644
--- a/README
+++ b/README
@@ -8,8 +8,13 @@ Create the local elgg/.htaccess file using the sample on the install page
 	Be sure to set the correct RewriteBase /~bbieber/UNL_Elgg/elgg/ for example.
 Create the local elgg/engine/settings.php file.
 	Be sure to specify unl_social as the database name
+Create a local directory for elgg data outside of the web root.
+	Change the permissions so Apache has write access to it.
+	sudo chown _www elgg_data
 Install the UNL_Templates pear packages
 	pear channel-discover pear.unl.edu && pear install unl/UNL_Templates-beta
 Set the correct site url within the database:
 	UPDATE elggsites_entity SET url='http://localhost/~bbieber/UNL_Elgg/elgg/' WHERE guid=1;
+	UPDATE elggdatalists SET value = '/Library/WebServer/Documents/workspace/UNL_Elgg/elgg/' WHERE name = 'path';
+	UPDATE elggdatalists SET value = '/Library/WebServer/Documents/workspace/elgg_data/' WHERE name = 'dataroot';
 Make sure the local site has an updated copy of the templatedependents
\ No newline at end of file
diff --git a/unl_theme/views/default/page_elements/header.php b/unl_theme/views/default/page_elements/header.php
index 7d3811afde918c7493a631dcccbd39934c8cb10f..20fc0574c5ef5bff9d42f615b04fdaa01831ee86 100644
--- a/unl_theme/views/default/page_elements/header.php
+++ b/unl_theme/views/default/page_elements/header.php
@@ -30,7 +30,7 @@ $release = get_version(true);
 <meta name="ElggVersion" content="<?php echo $version; ?>" />
 <!-- <script type="text/javascript" src="<?php echo $vars['url']; ?>vendors/jquery/jquery-1.2.6.pack.js"></script>  -->
 <script type="text/javascript">var $ = window.$ = window.jQuery;</script>
-<script type="text/javascript" src="<?php echo $vars['url']; ?>vendors/jquery/jquery-ui-personalized-1.5.3.packed.js"></script>
+<script type="text/javascript" src="<?php echo $vars['url']; ?>vendors/jquery/jquery-ui-1.7.2.custom.min.js"></script>
 <script type="text/javascript" src="<?php echo $vars['url']; ?>_css/js.php?lastcache=<?php echo $vars['config']->lastcache; ?>&amp;js=initialise_elgg&amp;viewtype=<?php echo $vars['view']; ?>"></script>
 <?php
 global $pickerinuse;