//////////////////////////////////////////////////
//
//		BLACKSTONE JAVASCRIPTS
//		Copyright 2001 by Jesse Schooff
//		sonata_form@outpost10f.com
//
//////////////////////////////////////////////////

Image2 = new Image();
Image2.src = "buttons/main2.jpg";
Image3 = new Image();
Image3.src = "buttons/articles2.jpg";
Image4 = new Image();
Image4.src = "buttons/downloads2.jpg";
Image5 = new Image();
Image5.src = "buttons/fleets2.jpg";
Image6 = new Image();
Image6.src = "buttons/ships2.jpg";
Image7 = new Image();
Image7.src = "buttons/links2.jpg";
Image8 = new Image();
Image8.src = "buttons/about2.jpg";
Image9 = new Image();
Image9.src = "buttons/contact2.jpg";

function entry(title, url, person) {
	this.title = title;
	this.url = url;
	this.person = person;
}

theEntries = new Array(8);
   theEntries[0] = new entry("Main", "buttons/main", "Back to the Main Page");
   theEntries[1] = new entry("Articles", "buttons/articles", "Featured Articles and Treatises at Blackstone Six");
   theEntries[2] = new entry("Downloads", "buttons/downloads", "Download BFG-related goodies");
   theEntries[3] = new entry("Fleets", "buttons/fleets", "Proflies of Blackstone Six Members Fleets");
   theEntries[4] = new entry("Ships", "buttons/ships", "New Ships Rules for Battlefleet Gothic");
   theEntries[5] = new entry("Links", "buttons/links", "Links to 40K and BFG Pages Around the Web");
   theEntries[6] = new entry("About", "buttons/about", "About the Members of Blackstone Six");
   theEntries[7] = new entry("Contact", "buttons/contact", "Contact Us");

function mouseonit (whichone) {
	document.images[whichone + 2].src = theEntries[whichone].url + "2.jpg";
	window.status = theEntries[whichone].person;
	return true;
}

function mouseoffit (thething) {
	document.images[thething + 2].src = theEntries[thething].url + "1.jpg";
	window.status = '';
}	
