     
var vanityTable = 
 {
     weddings: "http://www.dlphotography.ca/gallery/3384091_BRELT/1/190084515_e3NwQ",
     lauraandscott: "http://www.dlphotography.ca/gallery/3338715_RGgDB/1/190097546_82avf#190097546_82avf",
     clients: "http://www.dlphotography.ca/Client%20Area/236454",
     client: "http://www.dlphotography.ca/Client%20Area/236454",
     ina: "http://www.dlphotography.ca/gallery/5817590_UQgmU#360560072_VXoDP",
     cottagesummer07 : "http://www.dlphotography.ca/gallery/3251648_iPz77#180020049_xJi8S",
     recent: "http://www.dlphotography.ca/gallery/5567587_zrreu#345198536_NCvyi",
 };

 
http://dlphotography.smugmug.com/gallery/5817590_UQgmU/#360560072_VXoDP

 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
         }
     }
 }
