var didYouKnows = new Array();
didYouKnows[0] = "The Society cleared the air for Canadians by advocating against smoking on flights, at the workplace, in restaurants and most recently in cars with children.";
didYouKnows[1] = "In the 1960s the Canadian Cancer Society funded research that led to the discovery of the existence of stem cells.";
didYouKnows[2] = "The Society was the first to publicly recommend the beneficial health effects and risks of Vitamin D to Canadians.";
didYouKnows[3] = "The Society is a leading advocate for a ban on the use and sale of cosmetic pesticides.";
didYouKnows[4] = "The Society provides the most trusted source of information for cancer information.";
didYouKnows[5] = "In 2008, 200k + Canadians came together at <i>Relay For Life</i> events across Canada.";
didYouKnows[6] = "At least 50% of cancers can be prevented through healthy living and policies that promote healthy environments.";
didYouKnows[7] = "Last year, we spent $49.5 Million on a broad spectrum of research into all forms of cancer.";

$(document).ready(function() {
    var myRandom = Math.floor(Math.random()*didYouKnows.length);
    $('#dykloader').hide();
    $('#didyouknow').html(didYouKnows[myRandom]);
});
