// script functions that define the available albums

//this is used to populate albummenu
function albumdef() {
	// heading and sub text pairs
	this.names	= new Array('Cars',
	                             'Japan',
	                             'Wedding',
	                             'Cats',
	                             'Family',
				     'Holiday',
				     'Humour');
	this.descs	= new Array('Jupiter, MG and Imp',
				    'Kyushu, Japan',
				    'Our Wedding',
				    'Cassie and Buffy',
				    'Family',
				    'Holiday Snaps',
				    'Jokes');
	this.pages	= new Array("carspage.htm",
	                             "japspage.htm",
	                             "wedspage.htm",
	                             "catspage.htm",
	                             "famspage.htm",
				     "holspage.htm",
				     "jokepage.htm");
}

// end of script


