var vanityTable = 
{
press : "http://wordsmithsproject.smugmug.com/gallery/2920924",
editors : "http://wordsmithsproject.smugmug.com/gallery/1789669",
agents : "http://wordsmithsproject.smugmug.com/gallery/1789673",
reviewers : "http://wordsmithsproject.smugmug.com/gallery/1789675",
others : "http://wordsmithsproject.smugmug.com/gallery/1789678",
sally : "http://wordsmithsproject.smugmug.com/gallery/1784635",
contact: "http://wordsmithsproject.smugmug.com/gallery/1794322"
 };

 function CheckRedirects()
 {
     if (YD.hasClass(document.body, 'homepage'))    // only run this code on the home page
     {
         // get the path from the current URL, 
         // convert it to lowercase and remove the leading slash
         var path = window.location.pathname.toLowerCase().substr(1);
         
         var newURL = vanityTable[path];        // look it up in our table
         
         // if we found it in the table && newURL is different than where we are
         if (newURL && (newURL != window.location))
         {
             window.location.replace(newURL);        // go to the new URL
         }
     }
 }
 
