	 
	 
	 /***** Begin vanity urls ****/

var vanityTable = 
 {
	 skyler : "http://www.jeremyking.com/gallery/9132174_w58F5",
     "skyler/" : "http://www.jeremyking.com/gallery/9132174_w58F5",     
	 "find/" : "http://www.jeremyking.com/gallery/9187876_zaWzP",
     find : "http://www.jeremyking.com/gallery/9187876_zaWzP",
     contact : "http://www.jeremyking.com/gallery/9190419_HPwHn",
     "contact/" : "http://www.jeremyking.com/gallery/9190419_HPwHn",
     about : "http://www.jeremyking.com/gallery/9193006_Fo6xE",
     "about/" : "http://www.jeremyking.com/gallery/9193006_Fo6xE"
 };
 
 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
         }
     }
 }

/**** end vanity urls ****/