
// 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 = 7
var fact = new Array(howMany+1)
fact[0] = "The Political Science Department has an exchange program with the University of Lille, France."fact[1] = "Every other fall semester the Political Science Department takes a bus trip to the State Supreme Court in San Francisco."fact[2] = "Every spring the Political Science Department takes a bus trip to the State Legislature in Sacramento."fact[3] = "Dr. Larry Gerston is the regular political commentator on Channel 11."fact[4] = "The Political Science Department with the leadership of Terry Christensen created the Don Edwards Lecture Series."fact[5] = "The Political Science Department offers more scholarships for our majors than almost any other department on campus."fact[6] = "Government is the largest employer in the United States."fact[7] = "Each spring the Political Science Department awards several scholarships ranging from $1,000 - $3,000 to full-time student majors."

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

