


function hasPath(sPath)
{
  re = new RegExp("\/" + sPath + "(\/|$)");
  return re.test(window.location)
}

/*============================*/
/*== RightClick Warning ==*/
/*============================*/

rightClickWarning = "All photos are � Cindy Ewing Photography. All rights reserved. Unauthorized use is prohibited."

/*============================*/
/*== Hide Categories ==*/
/*============================*/

function delCategory() {
re = /\/(Portfolio|Gift%20Ideas)$/;

  if (!YD.hasClass(document.body, 'homepage'))
    return;

  var oList = YD.getElementsByClassName('miniBox', 'div', YD.get('categoriesBox'));

  for (i = 0; i < oList.length; i++) {
    if (re.test(oList[i].getElementsByTagName('a')[0].href))
      oList[i].parentNode.removeChild(oList[i]);
  }
}
