// change the link on the SmugMug Logo

YE.onAvailable('homelink', function(e) {

this.href = "http://nickname.smugmug.com/";

this.firstChild.alt = "OpticalRealities";

this.firstChild.title = "OpticalRealities";

});

// removes the pipes characters in the toolbar header

YE.onAvailable('toolbar', function(e) {

this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");

});

var vanityTable = 
 {
     artiststatement : "http://opticalrealitiesphotos.org/gallery/7149806_wPCjz",     
     missionstatement : "http://opticalrealitiesphotos.org/gallery/7149487_BU8KM",
     lindapanetta: "http://opticalrealitiesphotos.org/gallery/6701190_qGytk",
     afghanistan : "http://opticalrealitiesphotos.org/gallery/7370620_5sFmY",
     brucecockburn : "http://opticalrealitiesphotos.org/gallery/6960951_sFZ77",
     chiapas : "http://opticalrealitiesphotos.org/gallery/6937509_u6P8F",
     chile : "http://opticalrealitiesphotos.org/gallery/6937568_UiLAW",
     ecuador : "http://opticalrealitiesphotos.org/gallery/6961156_NP4n6",
     elsalvador : "http://opticalrealitiesphotos.org/gallery/6961507_3U5aK",
     elsalv_inaug09 : "http://opticalrealitiesphotos.org/gallery/8452977_Tzkcj",
     elsalv09share : "http://opticalrealitiesphotos.org/gallery/8456276_LPtKS",
     guatemala : "http://opticalrealitiesphotos.org/gallery/6859130_HZo5W",
     haiti : "http://opticalrealitiesphotos.org/gallery/7345536_qadG3",
     juliagarcia : "http://opticalrealitiesphotos.org/gallery/9012949_K3DX9",
     musiciansgallery : "http://opticalrealitiesphotos.org/gallery/7660715_6PxVx",
     mujeres_coop : "http://opticalrealities.smugmug.com/gallery/9090675_iYi2P",
     nicaragua : "http://opticalrealitiesphotos.org/gallery/6937185_Mp27s",
     obamadelaware : "http://opticalrealitiesphotos.org/gallery/6933940_sSy8v",
     obamaphilly : "http://opticalrealitiesphotos.org/gallery/7110654_MH2vh",
     palestine06 : "http://opticalrealitiesphotos.org/gallery/6796682_fYL8Y",
     palestine08 : "http://opticalrealitiesphotos.org/gallery/8016543_MBLps",
     panama : "http://opticalrealitiesphotos.org/gallery/6937433_GetpV",
     peru : "http://opticalrealitiesphotos.org/gallery/6961171_rXCDA",
     plancolombia : "http://opticalrealitiesphotos.org/gallery/7250866_eqbuu/1",
     poppafuse7_25 : "http://www.opticalrealitiesphotos.org/gallery/9429168_7Xqr6",
     roybourgeois : "http://opticalrealitiesphotos.org/gallery/7318434_cB9AA",
     rufina : "http://opticalrealitiesphotos.org/gallery/7437943_K7KaW",
     scenicsouthwest : "http://opticalrealitiesphotos.org/gallery/6979948_aYtiU"
     senclintonpa08 : "http://opticalrealitiesphotos.org/gallery/7109641_iwLh3",
     soavigil08 : "http://opticalrealitiesphotos.org/gallery/6696568_XCNK8",
     springsteen08 : "http://opticalrealitiesphotos.org/gallery/6933963_3TED7",
     stmalachys : "http://opticalrealitiesphotos.org/gallery/6961036_BxNEY",
     venezuela : "http://opticalrealitiesphotos.org/gallery/6961014_h6Pnu",
     votematters : "http://opticalrealitiesphotos.org/gallery/7190174_DFiBs", 
 };


 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
         }
     }
 }



