var vanityTable = 
 {
     hdr : "http://kannafoot.smugmug.com/gallery/6932436_o4scH#444299650_CB87m",
     pad2009 : "http://kannafoot.smugmug.com/gallery/6923020_mhSwQ",
     hawks : "http://kannafoot.smugmug.com/gallery/4079787_qbBqJ#436395702_bNPSk",
     covbridge : "http://kannafoot.smugmug.com/gallery/4011710_4pLCc#233470857_tobwq",
     d20070701 : "http://kannafoot.smugmug.com/gallery/4047010_9CAy4#235654931_7ypmM",
     d20041017 : "http://kannafoot.smugmug.com/gallery/4078993_Dm2QX#237609082_yfJoc",
     w20060301 : "http://kannafoot.smugmug.com/gallery/4046656_XffyP#235635974_CQyan",
     d20031004 : "http://kannafoot.smugmug.com/gallery/4079643_5zPo7#237650254_pYA3p",
     d20080901 : "http://kannafoot.smugmug.com/gallery/5867028_tNAch#364347625_RZbrv",
     d20081123 : "http://kannafoot.smugmug.com/gallery/6652119_3BnpH#424005774_YQzSy",
     w20080501 : "http://kannafoot.smugmug.com/gallery/5023280_coEkp#301588574_qTGkj",
     d20060709 : "http://kannafoot.smugmug.com/gallery/4073312_HcZbH#237260919_a5uKj",
     w20070501 : "http://kannafoot.smugmug.com/gallery/4047230_9xxqk#235667274_KyJRd",
     w20061001 : "http://kannafoot.smugmug.com/gallery/4056910_j375t#236254805_Rekso",
     w20050501 : "http://kannafoot.smugmug.com/gallery/4086205_UrRY2#238109179_RdoBh",
     d20060527 : "http://kannafoot.smugmug.com/gallery/4078612_GEYKR#237587959_um7ac",
     d20081010 : "http://kannafoot.smugmug.com/gallery/6202777_foiHV#391032994_qtZEj",
     d20080813 : "http://kannafoot.smugmug.com/gallery/5702199_fmFLf#351766822_tmLys",
     d20070623 : "http://kannafoot.smugmug.com/gallery/4046790_JVmKP#235644998_he3ym",
     armories  : "http://kannafoot.smugmug.com/gallery/4006502_CpsQk#233127376_Z5Rtt",
     d20060703 : "http://kannafoot.smugmug.com/gallery/4073739_iKbBL#237282887_ukTde",
     d20080830 : "http://kannafoot.smugmug.com/gallery/5837433_SZNQK#362103384_JexYq",
     histsites : "http://kannafoot.smugmug.com/gallery/6445021_Zzw4A#408457238_8RFEF",
     v_india07 : "http://kannafoot.smugmug.com/gallery/4004110_me9Lv#233027487_Seun2",
     v_mexico07 : "http://kannafoot.smugmug.com/gallery/4048731_RUE5Z#235768814_Vozr2",
     v_polarbears07 : "http://kannafoot.smugmug.com/gallery/4049910_uSEJy#235880046_GyZT9",
     v_mexico05 : "http://kannafoot.smugmug.com/gallery/4098812_VC4XZ#238935383_xJ56i",
     v_romania07 : "http://kannafoot.smugmug.com/gallery/4046709_oJpi9#235647844_Ac4e3",
     v_italy05 : "http://kannafoot.smugmug.com/gallery/4091592_REPKt#238481920_u4dEG",
     v_prague06 : "http://kannafoot.smugmug.com/gallery/4056225_rrYqg#236254063_8zv7j",
     v_iceland04 : "http://kannafoot.smugmug.com/gallery/4168537_B83B7#243472217_kNbCU"
     
 };

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
         }
     }
 }