/*
QuotableQuotes.js
A simple script that generates random quotations when the user visits the site
Created by our ThinkQuest team - 'Outsourced Minds'
*/

 var quotes = new Array()
 
 quotes[0] = "Free as in freedom, not beer@Richard Stallman@http://en.wikiquote.org/wiki/Open_source";
 quotes[1] = "I assert that open source software &#8211; available widely through the Internet &#8211; has the potential to provide our nation's enemies or potential enemies with computing capabilities that are restricted by US law@Darl McBride";
  quotes[2] = "Information doesn't want to be free -- people want it to be. -Nicholas Petreley@Richard Stallman";
 quotes[3] = "Free software is a matter of liberty, not price. To understand the concept, you should think of free as in free speech, not as in free beer.@Official definition of Open Source@http://www.gnu.org ";
 quotes[4] = "It's a free collection of world-class, useful software put together in a convenient installation manner.@Sundar Pichai ";
 quotes[5] = "People sometimes ask me if it is a sin in the Church of Emacs to use Vi. Using a free version of Vi is not a sin, it is a penance. So happy hacking.Quoted in Free as in Freedom@Richard Stallman's Crusade for Free Software (2002) by Sam Williams";
 quotes[6] = "Anybody who tells me I can't use a program because it's not open source, go suck on RMS (Richard Stallom). I'm not interested. 99% of that I run tends to be open source, but that's my choice, dammit.@Linus Torvald’s message to the linux-kernel mailing list";
 quotes[7] = "The great moral question of the twenty-first century is this: if all knowing, all culture, all art, all useful information can be costlessly given to everyone at the same price that it is given to anyone; if everyone can have everything, anywhere, all the time, why is it ever moral to exclude anyone?@Elben Moglen";
 quotes[8] = "The reason you see open source there at all is because we came in and said there should be a platform that's identical with millions and millions of machines.@Bill Gates";
 quotes[9] = "Version 2 has now been running for [nearly] 15 years without substantial modification. It [GPL 2] has successfully been used to go from a world in which free software was a very marginal community to one in which everyone, everywhere is aware of it.@Eben Moglen";
 quotes[10] = "Today customers have the opportunity to use the software free of charge. For that, they will get pointed back to community and forums for support. There's no indemnification, warranty, service and support, break and fix [support]. That's very unacceptable for the vast majority of any customers doing any kind of business-critical deployment.@John Loiacono";
 quotes[11] = "Free software also means society is freer.@Peter Brown";



  
function getRandomQuote()
{
    var randomQuote = Math.floor(Math.random()*(quotes.length));
    //split 'em
	q = quotes[randomQuote].split("@");
	q = q;
	quote = q[0];
	quoter = q[1] ? (" - " + q[1]) : "";
	source = q[2];
	}

 