// 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 = 2
var fact = new Array(howMany+1)
fact[0] = "SJSU has one of the five largest enrollments in the California State University system."
fact[1] = "San Jos&eacute; State is the largest educational institution in Silicon Valley."
fact[2] = "San Jos&eacute; State is the 7th largest public employer in Silicon Valley."

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


