function lastmodified(){
var modifieddate = document.lastModified;
var md = new Date(modifieddate)
var result =  md
var dayofmonth = md.getDate(modifieddate) 
result = dayofmonth
result += "/"
result += md.getMonth(modifieddate)+1
result += "/"
var year =md.getYear(modifieddate)
result += year
result +=" "
var hours = md.getHours(modifieddate)
result += hours
result +=":"
var minutes = md.getMinutes(modifieddate)
result += minutes
result +=":"
var seconds = md.getSeconds(modifieddate)
result += seconds
return result
}

if (document.images) {
    
  homeon = new Image();
  homeon.src = "images/btnhome_ovr.gif";

  homeoff = new Image();
  homeoff.src = "images/btnhome.gif";
  
  abton = new Image();
  abton.src = "images/btnabout_ovr.gif";

  abtoff = new Image();
  abtoff.src = "images/btnabout.gif";
   
  funon = new Image();
  funon.src = "images/btnfunc_ovr.gif";

  funoff = new Image();
  funoff.src = "images/btnfunc.gif";
  
  feloon = new Image();
  feloon.src = "images/btnfellow_ovr.gif";

  felooff = new Image();
  felooff.src = "images/btnfellow.gif";
  
  facon = new Image();
  facon.src = "images/btnfac_ovr.gif";

  facoff = new Image();
  facoff.src = "images/btnfac.gif";
  
  tpon = new Image();
  tpon.src = "images/btntp_ovr.gif";

  tpoff = new Image();
  tpoff.src = "images/btntp.gif";

  facuon = new Image();
  facuon.src = "images/btnfaculty_ovr.gif";

  facuoff = new Image();
  facuoff.src = "images/btnfaculty.gif";

  spon = new Image();
  spon.src = "images/btnsp_ovr.gif";

  spoff = new Image();
  spoff.src = "images/btnsp.gif";

 fpon = new Image();
  fpon.src = "images/btnfp_ovr.gif";

  fpoff = new Image();
  fpoff.src = "images/btnfp.gif";
  
}

function chgImages() {
  if (document.images) {
    for (var i=0; i<chgImages.arguments.length; i+=2) {
      document[chgImages.arguments[i]].src = eval(chgImages.arguments[i+1] + ".src");
    }
  }
}
