var vanityTable = 
 {
     ashley2008: "http://photographics.smugmug.com/gallery/4569465_UD697",
     autismspeaks: "http://photographics.smugmug.com/gallery/5790552_6aaSf",
     2008houstonwalk: "http://photographics.smugmug.com/gallery/6345548_vQgpg",
     2008austinwalk: "http://www.photographicstx.com/gallery/6594409_edUuj",
     brigance: "http://photographics.smugmug.com/gallery/5172191_tWHF2"
 };
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
         }
     }
 }