<!--
function maillink(lhs,rhs)
	{
	   document.write("<A HREF=\"mailto");
	   document.write(":" + lhs + "@");
	   document.write(rhs + "\" class=dark>" + lhs + "@" + rhs + "<\/a>");
	}
	
//randomize the image on the home page
myPix = new Array("images/home_01.jpg","images/home_02.jpg")
imgCt = myPix.length

function choosePic() {
  if (document.images) {
    randomNum = Math.floor((Math.random() * imgCt))
    document.myPicture.src = myPix[randomNum]
  }
}
//onload, active button
function window_onload()
{
//reference for rolling
	LoadActiveImage();
}