YE.onAvailable('popularTitle', function() {this.innerHTML = 'popular'});
YE.onAvailable('categoryTitle', function() {this.innerHTML = ''});
YE.onAvailable('featuredTitle', function() {this.innerHTML = '<center><i><font size="2">select a portfolio</i></font><br></center>'});

var vanityTable = 
 {
     seal : "http://josephlinaschke.com/share/A2eBebPIwOzEo",
     apple : "http://josephlinaschke.com/share/HTQrSyqZUbbmQ",
     sealmedia : "http://www.josephlinaschke.com/gallery/7505488_vHvxz",
     berkowitz : "http://www.josephlinaschke.com/share/PQeJ3DOWec81w",
     barbour : "http://www.josephlinaschke.com/share/kMXRZyjhOjYZ6",
     halloween : "http://www.josephlinaschke.com/Client/halloween",
     ducati : "http://www.josephlinaschke.com/Other/Ducati/10205917_G7nj9",
     nocturnebts : "http://www.josephlinaschke.com/Other/Video/10050379_gqSim",
     pipeline : "http://www.josephlinaschke.com/Other/Pipeline-Masters/10205752_2cjyr",
     johnlegend : "http://www.josephlinaschke.com/Client/Apple/JohnLegend/10227049_pRTK2",
     holidayportraits : "http://www.confessionsofatraveljunkie.com/portraits",
     holiday : "http://www.confessionsofatraveljunkie.com/portraits",
     portraits : "http://www.confessionsofatraveljunkie.com/portraits",
     barbourguest : "/share/0xTeN00k5anGk"
 };

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
         }
     }
 }