var vanityTable = 
{
robartservices: "http://www.robartphotography.ca/gallery/7182314_LH4JM",

hourly: "http://www.robartphotography.ca/gallery/8367679_eDNVL",

printprices: "http://www.robartphotography.ca/gallery/8032106_WHRZu",

about: "http://www.robartphotography.ca/gallery/8768125_v8F5B",

restore: "http://www.robartphotography.ca/gallery/8368114_TeeKV",

raves: "http://www.robartphotography.ca/gallery/10209181_8UM52",

designprices: "http://www.robartphotography.ca/gallery/10147514_vFero",

payments: "http://www.robartphotography.ca/gallery/8755087_G3HLn"

};

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
}
}
}



