function setPortrait()
{
  var myDate = new Date();

  images = new Array(12);
  images[0]  = "Photos/Avatars/sleep-matrix-s.jpg";
  images[1]  = "Photos/Avatars/sleep-hoops-s.jpg";
  images[2]  = "Photos/Avatars/sleep-plasma-s.jpg";
  images[3]  = "Photos/Avatars/sleep-architect-s.jpg";
  images[4]  = "Photos/Avatars/sleep-nova-s.jpg";
  images[5]  = "Photos/Avatars/sleep-fuji-s.jpg";
  images[6]  = "Photos/Avatars/sleep-borg-s.jpg";
  images[7]  = "Photos/Avatars/sleep-earth-s.jpg";
  images[8]  = "Photos/Avatars/sleep-dna-s.jpg";
  images[9]  = "Photos/Avatars/sleep-nebula-s.jpg";
  images[10] = "Photos/Avatars/sleep-matrix-monochrome-s.jpg";
  images[11] = "Photos/Avatars/sleep-fireworks-s.jpg";

  index = myDate.getMonth();

  document.getElementById("avatar").innerHTML = 
   "<img src=\"" + images[index] + "\" alt=\"Calm like a bomb\" width=\"60\" height=\"80\">";
}

// do <body onload="setPortrait()">

