// Script by Mike Tanacs
function setBgImg (element, imageURL, linkColor) {
  element.style.backgroundImage = imageURL == 'none' ? 'none' : 'url(' + imageURL + ')';
  element.children.tags('a')[0].style.color = linkColor;
}

