
// Run on load

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

var _gaq = _gaq || [];

function init() {
  DidYouKnow();
  GA();
}

function DidYouKnow() {
var tempD=document.getElementById("didyouknowrand");
 if (tempD) 
{
var howMany = 4
var fact = new Array(howMany+1)
fact[0] = "SJSU EFA sends a representative to the Academic Senate."fact[1] = "SJSU EFA social events are educational, entertaining, and engaging."fact[2] = "SJSU EFA provides a means for keeping retired faculty and staff connected with each other."fact[3] = "SJSU EFA celebrated its 20th anniversary in 2006."fact[4] = "The EFA spring luncheon is May 7, 2010."

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

function GA() {
  _gaq.push(['_setAccount', 'UA-21659030-2']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();
}


