// make "Portfolio Galleries" to "Portfolio"
function RemoveGalleryWord()
{
    this.innerHTML = this.innerHTML.replace(/ Galleries$| Sub-Categories$/, "");
}
YE.onAvailable("subCatGalleryTitle", RemoveGalleryWord);
YE.onAvailable("galleryTitle", RemoveGalleryWord);

//**********

// Remove description bubble, convert Tiny to Thumb
function ProcessImg() {
  imgTags = document.getElementsByTagName("img");
  for (i=0; i<imgTags.length; i++) {
    imgTags[i].title = "";
    imgTags[i].alt = "";
    var old_src = imgTags[i].src ;
    var re = /Tiny/ ;
    if(re.test(old_src)) { 
       imgTags[i].src= old_src.replace("Tiny", "Thumb") ;
    }
  }
}


//************

//customize click protect
rightClickWarning = "All photos are © Ashima Yadava. All rights reserved. Unauthorized use is prohibited.";

