var galleryRedirectTable = 
{
     3125001: "http://alexandchristine.smugmug.com/keyword/best-bruised%20by%20bike",
     3899746: "http://alexandchristine.smugmug.com/keyword/best-jamaica",
     3899760: "http://alexandchristine.smugmug.com/keyword/mayfield%20falls-jamaica",
     3899767: "http://alexandchristine.smugmug.com/keyword/snorkeling-jamaica",
};

function CheckRedirects()
{
    if (! YD.hasClass(document.body, 'loggedIn'))
    {
         // get the path from the current URL, 
         // convert it to lowercase and remove the leading slash
         var path = window.location.pathname.toLowerCase().substr(9); 
         
         var newURL = galleryRedirectTable[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
         }
    }
};