
// Run on load

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

function DidYouKnow() {
var tempD=document.getElementById("didyouknowrand");
 if (tempD) 
{
var howMany = 5
var fact = new Array(howMany+1)
fact[0] = "Through AmeriCorps, you can earn money while you serve."fact[1] = "Project SHINE lets you learn about Asian culture while tutoring."fact[2] = "CCLL gave birth to the SJSU Cesar Chavez Community Action Center."fact[3] = "ENGR & ENVS students can perform community service through EPICS."fact[4] = "Experiential education and networking are critical for a career."fact[5] = "Community learning courses score higher on SOTEs."

var rand=Math.floor(fact.length*Math.random());
var randfact = fact[rand];
tempD.innerHTML=randfact;
 }
}

