<!-- 
   var currentTime = new Date();
   var seconds = currentTime.getSeconds();
   var picture;

   if (seconds > 50)
    {
       picture = "graphics/campus01.jpg";
    }
    else if (seconds > 40)
    {
       picture = "graphics/campus02.jpg";
    }
   else if (seconds > 30)
    {
       picture = "graphics/campus03.jpg";
    }
   else if (seconds > 20)
    {
       picture = "graphics/campus04.jpg";
    }
   else if (seconds > 10)
    {
       picture = "graphics/campus05.jpg";
    }
   else
    {
       picture = "graphics/campus06.jpg";
    }
   
   bName = navigator.appName;
   bVer = parseInt(navigator.appVersion);
   if ((bName == "Netscape" && bVer >= 3) || 
     (bName == "Microsoft Internet Explorer" && bVer >= 3)) br = "n3"; 
   else br = "n2";

   if (br == "n3")
    {
       document.writeln("<img src='" + picture + "' alt='Rice University Campus' valign=top  align=center height=300 width=465>");
    }
//-->
