//  email the stafffunction send_it(form)  {              var menu_choice = form.destination.options[form.destination.selectedIndex].value;       if (menu_choice == "nothing")  {            form.destination.options[0].selected = true;            form.destination.options[1].selected = true;          }       else {  self.location = menu_choice; }       }// end function//    image cachingfunction imageCache () {       var images = new Array();    var x = imageCache.arguments.length    for (var i=0;  i<x;  i++) {        images[i] = new Image();        images[i].src = "images/" + imageCache.arguments[i];        }    }     // end function//   random image swapvar num  =0;function randomNumber() {                 var numLast = num;                 //  change the '20' to the next highest or lowest (not lower than 10)                  num = Math.round(Math.abs(Math.random()) *40);                   if (num == numLast) {  randomNumber();  }                 swapPic(); }   //end randomNumberfunction swapPic() {                 //    change the '17' to the highest picture number you use.                 if (num>37 || num==0) {  randomNumber();  }                 else {                               var  choice = "images/campus/" + num + ".jpg";                              document.campus.src = choice;                               window.setTimeout('randomNumber();',15000);                 }         }   //end function