// JavaScript Document
/* original code
function setStyle(clr,el) {el.style.backgroundColor=clr;}
function MM_displayStatusMsg(msgStr) {status=msgStr; document.MM_returnValue = true;}
*/
  
// Random pictures: slot 1 = ninth, 2 = people, 3 = fitz, 4 = colorado
rand_max = 3;
/* original code
ninth_max = 5;
people_max = 8;
fitz_max = 4;
colorado_max = 8;
*/

rand = '<img src="/RMneuro/img/random/';
/* original code
ninth = '<img src="/RMneuro/images/photos/ninth/';
people = '<img src="/RMneuro/images/photos/people/';
fitz = '<img src="/RMneuro/images/photos/fitz/';
colorado = '<img src="/RMneuro/images/photos/colorado/';
*/
//jpg files
//tail = '.jpg" alt="" height="185" width="185">';
//gif files
tail = '_sq.gif" alt="" height="185" width="185">';


function printImageRandom() {var i = Math.ceil(Math.random() * rand_max); document.write(rand + i + tail);}
/* original code
function printImageNinth() {var i = Math.ceil(Math.random() * ninth_max); document.write(ninth + i + tail);}
function printImagePeople() {var i = Math.ceil(Math.random() * people_max); document.write(people + i + tail);}
function printImageFitz() {var i = Math.ceil(Math.random() * fitz_max); document.write(fitz + i + tail);}
function printImageColorado() {var i = Math.ceil(Math.random() * colorado_max); document.write(colorado + i + tail);} */
