
// 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] = "&quot;The sex act itself is neither male or female: it is a human being reaching out for the ultimate in communication with another human being.&quot; <br>- Del Martin and Phyllis Lyon"fact[1] = "&quot;The oppositions of race collide inside me, [and] my writing is always an attempt at reconciliation.&quot; <br>- Cherrie Moraga"fact[2] = "&quot;I am not just a lesbian. I am not just a poet. I am not just a mother. Honor the complexity of your vision and yourselves.&quot; <br>- Audre Lorde"fact[3] = "&quot;Remember, to hate, to be violent, is demeaning.  It means you're afraid of the other side of the coin--to love and be loved.&quot; <br> - James Baldwin"fact[4] = "&quot;The Black community is only now beginning to realize the extent of bisexuality and homosexuality within our community, but it's here.  It's been here for a long time an it's going to continue to be here.  We might as well acknowledge it and move on.&quot; <br>- Marlon Riggs"fact[5] = "&quot;It's no wonder we know how to dress; we've spent centuries in closets.&quot; <br>- Isaac Mizrahi"

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


