var vanityTable = 
 {
     Trevor : "http://www.betsysergeant.com/Other/Friends-and-Family/Trevor/8998063_ArfLC#626740333_8ooyp",
     Guatemala 2008 : "http://www.betsysergeant.com/Travel/Guatemala-2008/5140886_AuwBR#316550991_Vdtjx",
     Guatemala 2007: "http://www.betsysergeant.com/Travel/Guatemala-2007/3017344_5GrSV#165247615_cPPpg"
     
 };
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
         }
     }
 }