/*  paleobotanySlideConstants.html

Array to display slide show.  Copy the commented-out section 
 at the bottom and paste it into the array.  Add appropriate
 information.
*/

// Information for paleobotany slide show
paleobotSlide =
{
	Archaeopteris:
	{
		sequence:	1,
		species:	"Archaeopteris macilenta",	// <i>Genus species</i>
		age:		"Upper Devonian. (From Beck, 1970)",		// age. (From author, year)
		image:		"Archfossil4x6.jpg",			// filename.jpg
		linkText:	"See a <a href='Archaeopt.html'>reconstruction</a> of <i>Archaeopteris!</i>"			// optional: Go <a href="">here</a>
	},
	Tipuana:
	{
		sequence:	2,
		species:	"Tipuana ecuatoriana",	// <i>Genus species</i>
		age:		"Late Miocene (from Burnham, 1995)",		// age. (From author, year)
		image:		"EPN4413.jpg",			// filename.jpg
		linkText:	null			// optional: Go <a href="">here</a>
	},
	Pityostrobus:
	{
		sequence:	3,
		species:	"Pityostrobus kayei",	// <i>Genus species</i>
		age:		"Late Cretaceous. (From Miller, 1975)",		// age. (From author, year)
		image:		"Miller_spec.jpg",			// filename.jpg
		linkText:	null			// optional: Go <a href="">here</a>
	}
};

/*
	ID:
	{
		sequence:	number,		// unique sequential numbers indicating order of display
		species:	"",			// <i>Genus species</i>, age. (From author, year)
		image:		"",			// filename.jpg
		linkText:	null		// optional: Go <a href="">here</a>
	}
*/

function linkToAllSlides()
{
	var i;
	for(i in paleobotSlide)
	{
		document.write("<tr><td align='center'><a href='" + top.PB_SLIDESHOW + paleobotSlide[i]['sequence'] + "'><i>" + paleobotSlide[i]['species'] + "</i></a></td></tr>\n");
	}
}