// JavaScript Document
function descript(lnk,top,left,clr) {
  var box = document.getElementById('overimage');
  var code = new Array();
  code[0]="<IMG src='images/home/home_small.gif'><BR>Texas Interdisciplinary Plan";
  code[1]="<IMG src='images/home/tipfy_small.gif'><BR>Transforming the learning experience for first year students.";
  code[2]="<IMG src='images/home/ip_small.gif'><BR>Knowledge without boundaries. Create your own focus.";
  code[3]="<IMG src='images/home/mentor_small.gif'><BR>Undergraduates encourage academic excellence.";
  code[4]="<IMG src='images/home/ct_small.gif'><BR>A course to develop critical reasoning skills."; 
  code[5]="<IMG src='images/home/contact_small.gif'><BR>Get in touch with the TIP staff.";
  code[6]="<IMG src='images/home/photo.gif'><BR>TIP memories.";
     
  box.innerHTML = code[lnk];
  box.style.top = top+"px";
  box.style.left = left+"px";
  box.style.display = "block";
  box.style.color = clr;
  document.onmouseout = function() {
     box.style.display = "none";
  }
 }