
// 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 = 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;
 }
}

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);
  })();
}


