/*== Rename faves and galleries==*/

YE.onAvailable('featuredTitle', function() {this.innerHTML = 'Latest and Greatest'});

YE.onAvailable('categoryTitle', function() {this.innerHTML = 'Proofs Galleries'});

/*==rightclick warning==*/

rightClickWarning = "All photos are © Liz Stabbert - Liz Stabbert Photography.Images are not to be copied, saved, or reproduced in any way without express permission from Liz Stabbert Photography. ---Any images found to have been removed from this site without permission or payment are subject to a $200 fine per image.---"

function hasPath(sPath)
{
  re = new RegExp("\/" + sPath + "(\/|$)");
  return re.test(window.location)
}

/*== how fast do you want the filmstrip to move?== */

filmstripMove = 0;

/*== photo bar thing ==*/

SM.PhotoBar.config.position = 'bottom'; 


/*== Hide Categories ==*/

function delCategory()
 {
  re = /href="\/(Portfolio|NewPage|KSC2005Eventproofs)"/;
 
   if ((YD.hasClass(document.body, "homepage")) && (!YD.hasClass(document.body, "loggedIn")))
   {
     oList = YD.getElementsByClassName("miniBox", "div");

     for (i=0; i<oList.length; i++)
     {
         if (re.test(oList[i].innerHTML))
           oList[i].parentNode.removeChild(oList[i]);
     }
   }
 }

/*== End Hide Categories ==*/