// make the photobar come out on the bottom
// SM.PhotoBar.config.position = 'bottom';

// change the link on the SmugMug Logo
  YE.onAvailable('homelink', function(e) {
  this.href = "http://www.ackersphotography.com/Other/Contact/10343773_DNEZt";
  this.firstChild.alt = "Ackers Photography";
  this.firstChild.title = "Ackers Photography";
});

// removes the pipes characters in the toolbar header
  YE.onAvailable('toolbar', function(e) {
  this.innerHTML = this.innerHTML.replace(new RegExp(/\|/g),"");
});

  // Required for spam-free e-mail link
function norobotmail(aUser, aDomain) { document.location = "mailto:" + aUser + "@" + aDomain; }