  document.write('<style type="text/css"> #theSlide { visibility: hidden; } </style>');

function initImage() {
  var imageId = 'theSlide';

  var image = document.getElementById(imageId);
  setOpacity(image, 0);
  image.style.visibility = 'visible';
  fadeIn(imageId, 0);
}

function setOpacity(obj, opacity) {
  if (opacity == 100) opacity = 99.999;

  // IE/Win
  obj.style.filter = "alpha(opacity:" + opacity + ")";

  // Safari<1.2 Konqueror
  obj.style.KHTMLOpacity = opacity/100;

  // Older Mozilla and Firefox
  obj.style.MozOpacity = opacity/100;

  // Safari 1.2 newer Firefox and Mozilla, CSS3
  obj.style.opacity = opacity/100;

}

function fadeIn(objId, opacity) {
  var obj;

  if(document.getElementById) {
    obj = document.getElementById(objId);
    if (opacity <= 100) {
      setOpacity(obj, opacity);
      opacity += 10;
      window.setTimeout('fadeIn("' + objId + '", ' + opacity + ')', 100);
    }
  }
}
   
window.onload = function() { initImage() }


// FUNCTION TO HIDE EMAIL ADDRESS

  function makeEmail(linkText) {
    var proto = "mailto:";
    var a   = "info";
    var a   = a + "@";
    var a   = a + "dialpenguin";
    var dot = ".";
    var a   = a + dot + "com";

    if (linkText == "address") linkText = a;

    var eMailtag = '<a href="' + proto + a + '">' + linkText + '</a>';

    document.writeln(eMailtag);

  }

