var vanityTable = {
headshots : "http://shaq.smugmug.com/gallery/4606184_WpE6J",
realestate : "http://shaq.smugmug.com/gallery/2915158_4GYWa",
fashionista : "http://shaq.smugmug.com/gallery/7506041_sD8qW",
football_cobras2008a : "http://shaq.smugmug.com/Sports/578576",
football_cobras2008 : "http://www.shaqphotography.com/share/mCX6cSxPjLDZs",
repros: "http://shaq.smugmug.com/gallery/4843773_65eyU",
dance_schools: "http://shaq.smugmug.com/gallery/5296313_GnKMD",
deu2009: "http://shaq.smugmug.com/gallery/8401405_2U3X8",
beyonddance2009: "http://shaq.smugmug.com/gallery/8469854_4wz7E",
beyonddance2009groups: "http://shaq.smugmug.com/gallery/8591416_vnxxG",
foodphoto: "http://shaq.smugmug.com/gallery/6714913_AomCm",
executives: "http://shaq.smugmug.com/gallery/6859188_89R8d",
candids: "http://shaq.smugmug.com/gallery/5176843_UYQFK",
ironpour: "http://shaq.smugmug.com/gallery/6759403_WkUmn",
gelberg: "http://shaq.smugmug.com/gallery/7691028_Eu9dB",
performingarts: "http://shaq.smugmug.com/gallery/5296313_GnKMD",
jodyegolf: "http://shaq.smugmug.com/gallery/8665382_RFqGH",
danaworks: "http://shaq.smugmug.com/gallery/6643597_2554p",
hcp: "http://shaq.smugmug.com/gallery/7339467_L3kE7"
};


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
}
}
}
