/*
diduknow.js
A simple script that generates random strings when the user visits the site - similar to our QutableQuotes.js
Created by our ThinkQuest team - 'Outsourced Minds'
*/

 var facts = new Array()
 
 facts[0] = "that firefox is the second largest browser after Internet Explorer?";
 facts[1] = "Linux is most popular on servers?";
 facts[2] = "PHP is the largest server side scripting language?";
 facts[3] = "firefox is the second largest browser after Internet Explorer?";
 facts[4] = "PHP is the largest server side scripting language?";
 facts[5] = "Linux was created by Linus Torvalds?";
 facts[6] = "the linux of mascot is named so because of torvalds + unix?";
 facts[7] = "Linus Torvalds got inspired to create Linux from ‘minix’";
 facts[8] = "Microsoft made its own version of Linux called Xenix?";
 facts[9] = "GNU stands for GNU is not Unix??";
 
function getRandomFact()
{
    var randomFact = Math.floor(Math.random()*(facts.length));
   	f = facts[randomFact].split("@");
	}