var vanityTable = {
     barracudas : "http://nimai.smugmug.com/gallery/5012716_B6VGx"
};

function CheckRedirects() {
    if ((YD.hasClass(document.body, 'homepage'))) {
        // 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
        }
    }
}

YE.on(window, "load", CheckRedirects);

function imageToolsEx() {
   var photoTools = document.getElementById('tools');
   if( photoTools.options[photoTools.selectedIndex].id == 'proPricingPhotoChoice' )
      document.getElementsByName('Type')[0].value = '';
   imageTools();
}

function norobotmail(aUser, aDomain) { 
       document.location = "mailto:" + aUser + "@" + aDomain;
    }

function PhotoCommentsOnly() {
   this.selectedIndex = 1;
   this.disabled = true;
}
YE.onAvailable('commentType', PhotoCommentsOnly);

