var vanityTable = 
 {
     laratad : "http://prints.seanhoytphoto.com/gallery/8535785_vshcY",
     petwalk : "http://prints.seanhoytphoto.com/gallery/8147671_6MGtB#531571373_8sYQB",
     jenniferchase : "http://prints.seanhoytphoto.com/gallery/8861516_esmdW#587329253_Kj5Et",
     fallonchase : "http://seanhoytphoto.smugmug.com/gallery/9220507_BeZJY",
     shirleyjeremy : "http://prints.seanhoytphoto.com/gallery/9351296_55tca/1/625705266_SJi3W",
     lb : "http://prints.seanhoytphoto.com/weddings/2009/laura-beau-wedding/"
 };

 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
         }
     }
 }



