// Run on load

if (window.addEventListener) // Firefox
 {
    window.addEventListener('load', init, false);;
 } 
 else if (window.attachEvent) // IE
 {   
    window['onload'] = init;
 } 

function init() {	
  Random_Images();
}

function Random_Images (){
  var homePageImage=document.getElementById("imagesrand");
  var FIRImage=document.getElementById("imagesrand2");
  if (homePageImage) {
    var imageArray=new Array(
    "/cfd/pics/quotation-peter.jpg",
    "/cfd/pics/quotation-weichien.jpg",
    "/cfd/pics/quotation-cynthia.jpg",
    "/cfd/pics/quotation-annette.jpg",
    "/cfd/pics/quotation-beth.jpg");
    
    var textArray=new Array(
    "The Center for Faculty Development is like a one-stop shop for learning everything necessary for you to be successful. From pedagogy to technology, from instructional design to dossier preparation, I've found it to be a valuable resource for almost every aspect of my career at SJSU. Peter Beyersdorf, Physics",
    "I am amazed by and extremely appreciate your attention to details and thoughtfulness. Wei-Chien Lee, Psychology",
    "Center for Faculty Development is the single platform that brought all the separate entities on campus together in terms of creating awareness for accessibility in learning and teaching. I think the CFD is outstanding because of this willingness to make things that are beneficial possible. Cynthia Rostankowski, Humanities",
    "Attending workshops at the Center is a great way to meet, interact with and share ideas with colleagues in different colleges. Annette Nellen, Finance &amp; Accounting",
    "The Center for Faculty Development is a wonderful space (literally and virtually) for faculty and staff to learn and share. Beth Von Till, Communication Studies");

    var rx=Math.floor(imageArray.length*Math.random());
    rx='<img src="'+ imageArray[rx]+ '" alt="'+textArray[rx]+'" border="0" width="770">'; 
    homePageImage.innerHTML=rx;
  }
  if (FIRImage) {
    var imageArray2=new Array(
    "/cfd/pics/kim-uhlik.JPG",
    "/cfd/pics/Mike_Splane.JPG",
    "/cfd/pics/Michael_Kimbarow.JPG",
    "/cfd/pics/Winncy_Du.JPG",
    "/cfd/pics/Cynthia_Rostankowski.JPG",
    "/cfd/pics/DeannaFassett.JPG",
    "/cfd/pics/Chris_Pollett.JPG",
    "/cfd/pics/Francis_Howard.JPG");
    
    var textArray2=new Array(
    "Kim Uhlik",
    "Mike Splane",
    "Michael Kimbarow",
    "Winncy Du",    
    "Cynthia Rostankowski",
    "Deanna Fassett",
    "Chris Pollett",
    "Francis Howard");

    var rx=Math.floor(imageArray2.length*Math.random());
    rx='<img src="'+ imageArray2[rx]+ '" alt="'+textArray2[rx]+'" border="0" width="138px">'; 
    FIRImage.innerHTML=rx;
  }
}