function delCategory() {
   re = /\/Personal|Other|Maps|Site%20Files$/;
   if (!YD.hasClass(document.body, 'homepage') || YD.hasClass(document.body, 'loggedIn'))
     return;
   var oList = YD.getElementsByClassName('miniBox', 'div', YD.get('categoriesBox'));
   for (i = 0; i < oList.length; i++) {
      if (re.test(oList[i].getElementsByTagName('a')[0].href))
         oList[i].parentNode.removeChild(oList[i]);
   }
}

YE.onAvailable('homelink', function(e) {
   this.href = "http://digitalwonderland.smugmug.com/";
   this.firstChild.alt = "Digital Wonderland Photography... where imagination meets the eye.";
   this.firstChild.title = "Digital Wonderland Photography... where imagination meets the eye.";
});