/*==================================*/
/*== Add Referral Code to SM Link ==*/
/*==================================*/
function AddReferralCode()  {
  var links = this.getElementsByTagName("A");
  if (links && (links.length != 0)) {
    var smugLink = links.item(0);
    smugLink.href = "http://www.smugmug.com/?referrer=8jDMwxj6yp4f2";
  }
}
YE.onAvailable('footer', AddReferralCode);


/*================================*/
/*== Pseudo Filmstrip Slideshow ==*/
/*================================*/
// make the filmstrip auto advance to the next image
function filmstrip_AutoNextImage() {
  if (YD.hasClass(document.body,'filmstrip')) {
    nextImage(1);
    setTimeout("filmstrip_AutoNextImage()",15000);
    
  }
}