rightClickWarning = "All photos are property of American Motocross Scenes and Mallory Schenach. All rights reserved. Unauthorized use is prohibited."; 

function delCategory() {
  re = /\/Other$/;
 
  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]);
  }
}