function ScienceSetup(Title, Description, Link) {

	this.Title = Title;
	this.Description = Description;
	this.Link = Link;

}

function ScienceInitialize() {

	ScienceArray = new Array();

	ScienceArray[0] = new ScienceSetup("Pint Prognostication", "A scientist has made the fascinating discovery that Guinness can predict your future.", "PintPrognostication.html");

	ScienceArray[1] = new ScienceSetup("NASA Watches Clouds", "NASA launches two cloud&ndash;watching satellites.", "NASAClouds.html");

	ScienceArray[2] = new ScienceSetup("Queen Mother&rsquo;s Liver Cloned", "British scientist Ian Wilmut has successfully cloned the Queen Mother&rsquo;s liver, giving hope to the world&rsquo;s inebriated.", "QueenMotherLiver.html");

	ScienceArray[3] = new ScienceSetup("Bats Fight Back", "Bats resent being accused of transmitting SARS.", "Bats.html");

	ScienceArray[4] = new ScienceSetup("Dope: Not Just For Dummies Anymore", "Researchers at the University of Saskatchewan have discovered that marijuana stimulates brain cell growth. Pass the Cheesies.", "Dope.html");

	ScienceArray[5] = new ScienceSetup("NASA Discovers Alien Signals", "NASA has secretly discovered alien television signals but fears panic if they are revealed to the public.", "SpaceAliens.html");

}

function ScienceWrite() {

	ScienceInitialize();

	ScienceText = "";

	for(i = ScienceArray.length - 1; i >= 0; i--) {

		ScienceText += "<p><table border=0 cellspacing=0 cellpadding=0 width=100%><tr><td width=15><p class=\'nomargin\'><img src=\'DesignImages/ArrowBullet.gif\' hspace=0 vspace=0></p></td><td><p class=\'nomargin\'><a class=link href=\'Science/";

		ScienceText += ScienceArray[i].Link;

		ScienceText += "\'>";

		ScienceText += ScienceArray[i].Title;

		ScienceText += "</a></p><p>";

		ScienceText += ScienceArray[i].Description;

		ScienceText += "<br></td></tr></table></p>";

	}

	document.write(ScienceText);

}
