/*=========================*/
/*change photobar popup postion*/
SM.PhotoBar.config.position = 'bottom';
/*=========================*/
/*change right-click warning*/
rightClickWarning = "All photos are property of FountainPhoto. All rights reserved. Unauthorized use is prohibited."; 
/*=========================*/

/*=========================*/

/*hide Slideshow, Pricing, Front Page, BIB galleries, Privates from categories box*/
function delCategory() {
  re = /\/Slideshow|Pricing|FrontFeature|2007NOVANationalBIBS|2008FlagstaffFinaleBIBS|2008NOVANationalBIBS|2009GlobalBikesBIBS|Client%20Photos|Private%20Photos|School%20Functions%20&%20Activities|Soccer%20Spring%202009$/;

  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]);
  }
}
/*=========================*/
