SM.SmugMug.config.size = 'small';

var vanityTable = 
 {
     littlestangels : "http://www.mppgalleries.com/gallery/4326366_8Fzkd",
     asana2008 : "http://www.mppgalleries.com/ASANA%20Softball", 
     holidaycards : "http://www.mppgalleries.com/gallery/5886551_vCaQr/1/370949924_GZpE5#P-1-9",
     customphotocards : "http://www.mppgalleries.com/Custom%20Photo%20Cards",
     rosenberg2008 : "http://www.mppgalleries.com/Rosenberg%202008",
     ASANA2009 : "http://www.mppgalleries.com/ASANA2009"

 };

 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
         }
     }
 }