// Run on load

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

function init() {	
        SJSUHome_Images();
        FS_Images();
        DS_Images();
	DidYouKnow();
}

function SJSUHome_Images() {
 var temp=document.getElementById("highlight_img");
 if (temp) {
 var iArray=new Array(
  "includes/publicaffairs/highlights/images/homepage1.jpg\" alt=\"Two female students, one holding a notebook",
  "includes/publicaffairs/highlights/images/homepage2.jpg\" alt=\"Two male students sitting in front of the Carlos/Smith Statue",
  "includes/publicaffairs/highlights/images/homepage3.jpg\" alt=\"Two female students walking");

   var ri=Math.floor(iArray.length*Math.random());
   ri='<img src="./'+ iArray[ri]+ '" border=0>';
   temp.innerHTML=ri;
  }
}

