
// 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] = "You can save $101.66 and 440.98 lbs of CO2 emission a semester by replacing one day of commuting to campus with online or web-supplemented courses? eLearning = Green Learning!"fact[1] = "SJSU eCampus offers over 200 online and web-supplemented classes each semester, including GE courses to help complete your degree?"fact[2] = "If every SJSU student who commutes to campus replace one day of class with online or web-supplemented courses we would prevent 6,472,263.46 pounds  of CO2 emmission a semester? eLearning = Green Learning!"

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


