showPhotoBar = false;

// Email spam stopping trick

function norobotmail(aUser, aDomain) { document.location = "mailto:" + aUser + "@" + aDomain; }

// Vanity urls go here

var vanityTable = 
 {
     autumn_blazing: "http://pyry.smugmug.com/gallery/3669743",
     cygnus_2007: "http://pyry.smugmug.com/gallery/3669816",
     birds: "http://pyry.smugmug.com/gallery/3678742",
     studio: "http://pyry.smugmug.com/gallery/3761682",
     crescent: "http://pyry.smugmug.com/gallery/3792960",
     darkness: "http://pyry.smugmug.com/gallery/3955354",
     milja: "http://pyry.smugmug.com/gallery/4003651",
     iltapuvut: "http://pyry.smugmug.com/gallery/4003733",
     2007: "http://pyry.smugmug.com/gallery/4068004_mg8f3",
     ruila: "http://pyry.smugmug.com/gallery/4273826",
     talvipaiva: "http://pyry.smugmug.com/gallery/4319893_XBPsr",
     tama_toimii: "http://pyry.smugmug.com/gallery/4687554_MGg7C",
     koffin_talli: "http://pyry.smugmug.com/gallery/4697914_oh2Ap",
     taitaja2008: "http://pyry.smugmug.com/gallery/4755164_KPY9b",
     katjus: "http://pyry.smugmug.com/gallery/5019075_PNK2g/1/301230572_PcbRA",
     praha: "http://pyry.smugmug.com/gallery/3661628_yDg99/1/209144122_YsA6u",
     prague: "http://pyry.smugmug.com/gallery/3661628_yDg99/1/209144122_YsA6u",
     gotheborg: "http://pyry.smugmug.com/gallery/5155857_oXfuW#312091158_4Aznz",
     jussikellunta: "http://pyry.smugmug.com/gallery/5246568_LGiHx#319030588_y4p9x",
     estekurssi: "http://pyry.smugmug.com/gallery/5322993_q8H7G/1/325169134_g5rTK",
     cygnus_2008: "http://pyry.smugmug.com/gallery/5488024_zxNuP/1/335603122_6VssU",
     kissanpennut: "http://pyry.smugmug.com/gallery/5527559_pLfUR#338437024_VpYMQ",
   owls: "http://pyry.smugmug.com/gallery/5074806_WUe8e/1/305523377_zWoy2#305533928_tH3Km",
     tera_20v:   "http://pyry.smugmug.com/gallery/6741178_xqVtP/#430557992_BjNqh",
     irja: "http://pyry.smugmug.com/gallery/7238584_Yprcr",
     kuunari: "http://pyry.smugmug.com/gallery/8641694_Cbmsq#570230180_JtVG8",
     2008: "http://pyry.smugmug.com/gallery/6974366_HmAtQ#446408923_ad9bf"
 };
 
 
// And this bit makes 'em work
 
  function IsHomePage()
 {
    return(YD.hasClass(document.body, 'homepage'));
 }
 
 function CheckRedirects()
 {
     if (IsHomePage())    // 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
         }
     }
 }