// JavaScript Document
web_names = Array('8&Pi;', 'Tigress', 'Gammasphere', 'Dragon', 'Introduction to Nuclear Science', 'Pictures');

web_addrs = Array('./spectro.html', './tigress.html', './gamma.html', 'http://dragon.triumf.ca/home.html', './intro-nuc.html', './pictures.html' );
document.write('<ul>');
for( i in web_names ) {
	document.write( '<li><a href="'+web_addrs[i]+'">'+web_names[i]+'</a></li>' );
}
document.write('</ul>');

