// ======================================================
// Here is where you add/change/modify the 'Did you know'
// ======================================================
var quotes = new Array(
	"Fremd Science Department is a beta testing site for Motorola products.",
	"Fremd Science Department has a live weather station.",
	"Fremd Science Department is the third largest department with 23 members.",
	"The Fremd Science Department teaches in the newest addition to the building.",
	"Mr. Craddock was on one episode of 'The Bozo Show.'",
	"Mrs. Bragg lives on a working farm.",
	"Fremd is an official Beta Testing Site for Motorola Inc.",
	"The Chemistry of Foods class runs a restaurant several times in a year.",
	"Fremd Science teachers are in charge of 22 sports or activities."	
);
// Generate a random number based off the total number of quotes.

// Use a random number (from zero to one) and multiply it by the
// number of quotes (quotes.length) to get a random number betwen
// zero and the total number of quotes.

var quotenumber = Math.random() * quotes.length;

// Now round the number down to an integer so we can use it as an
// array index.
quotenumber = Math.floor(quotenumber);

// Write the quote.
document.write(quotes[quotenumber]);


