rightClickWarning = "All photos are property of Ty Chee Photography. All rights reserved. Unauthorized use is prohibited.";

var vanityTable = 
 {
     noah : "http://tychee.smugmug.com/gallery/5259679_SiHVE#355841458_ToAwR",
     vanessa : "http://tychee.smugmug.com/gallery/5259942_UKLyX#355843095_sGKAZ",
     joann : "http://tychee.smugmug.com/gallery/5786753_Hw2YW#358183603_ARwdV",
     scott : "http://tychee.smugmug.com/gallery/5907308_pyyhG#396062136_ryT4d",
     caroline : "http://tychee.smugmug.com/gallery/4799541_uYBh2#285089867_6FKBH"
 };
 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
         //var newURL = path;
         // 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
         }
     }
 }


