package 2dustInformation;
use vars qw($VERSION @ISA @EXPORT);
require Exporter;
@ISA = qw(Exporter);
@EXPORT = qw(%teamMembers @pi &dSingsHeader &dMainNavbar $siteBackground %navLinks); #export list of galaxies
$VERSION = 1.00; #version number
#2dust development team (top two are leads)
%teamMembers =
("Margaret Meixner" => ["Space Telescope Science Institute","meixner\@stsci.edu"],
"Toshiya Ueta" => ["NASA Ames Research Center/SOFIA project","toshiya\_ueta\@fastmail.us"],
"Megan Sosey" => ["Space Telescope Science Institute","sosey\@stsci.edu"] );
#display 2dust pretty header
sub dSingsHeader {
print <
|
HTML
#add in the team links for the left sidebar
@mykeys = keys(%navLinks);
for $i (sort(@mykeys)){
print "$i
";
}
print <
HTML
}
1;