function Constants () {

	// the constants...here's where the project
	// specific constants are entered :-)

	// the name of the banner image
	this.bannerName = "/milagro/gif/milagro_banner.png";

	// the area tags on the banner image where
	// new Area( SHAPE, COORDS, HREF, ALT, TITLE)
	this.area = new Array();
	this.area[0] = new Area( "rect", "0,0,100,60",
	                         "http://www.eol.ucar.edu/",
			         "Go to EOL", "Go to EOL");
	this.area[1] = new Area( "rect", "600,0,750,80",
	                         "http://www.eol.ucar.edu/projects/milagro/",
			         "Go To MILAGRO", "Go To MILAGRO");

	// the image tags that are the tabs
	// new Image( SRC, ALT, WIDTH, HEIGHT )
	this.image = new Array();
/*
	this.image[0] = new Image()
	this.image[0].src="/milagro/gif/home_off.gif"
	this.image[0].alt="Catalog Home"
	this.image[0].width=106
	this.image[0].height=35
*/
        this.image[0] = new tabImage( "/milagro/gif/home_off.gif",
                                   "Catalog Home", 106, 35);
        this.image[1] = new tabImage( "/milagro/gif/report_off.gif",
                                   "Project Reports", 106, 35);
        this.image[2] = new tabImage( "/milagro/gif/product_off.gif",
                                   "Operational Data Products", 106, 35);
        this.image[3] = new tabImage( "/milagro/gif/model_off.gif",
                                   "Model/Forcast Products", 114, 35);
        this.image[4] = new tabImage( "/milagro/gif/research_off.gif",
                                   "Research Data Products", 106, 35);
        this.image[5] = new tabImage( "/milagro/gif/mission_off.gif",
                                   "RICO Missions", 106, 35);
        this.image[6] = new tabImage( "/milagro/gif/other_off.gif",
                                   "Tools and misc. info", 106, 35);
/*
	this.image[1] = new Image()
	this.image[1].src="/milagro/gif/report_off.gif"
	this.image[1].alt="Project Reports"
	this.image[1].width=106
	this.image[1].height=35
	this.image[2] = new Image()
	this.image[2].src="/milagro/gif/product_off.gif"
	this.image[2].alt="Operational Data Products"
	this.image[2].width=106
	this.image[2].height=35
	this.image[3] = new Image()
	this.image[3].src="/milagro/gif/model_off.gif"
	this.image[3].alt="Model/Forecast Products"
	this.image[3].width=114
	this.image[3].height=35
	this.image[4] = new Image()
	this.image[4].src="/milagro/gif/research_off.gif"
	this.image[4].alt="Research Data Products"
	this.image[4].width=106
	this.image[4].height=35
	this.image[5] = new Image()
	this.image[5].src="/milagro/gif/mission_off.gif"
	this.image[5].alt="MILAGRO Missions"
	this.image[5].width=106
	this.image[5].height=35
	this.image[6] = new Image()
	this.image[6].src="/milagro/gif/other_off.gif"
	this.image[6].alt="Tools and Miscellaneous"
	this.image[6].width=106
	this.image[6].height=35
*/
	
	// the tabs
	this.tab = new Array();
	// new Anchor( HREF, TITLE )
	// here the title is the above images and href is 
	// the what happens when the user clicks on the image
	this.tab[0] = new Anchor('/milagro/index.html', 
	                         this.image[0].fetchHTML() );
	this.tab[1] = new Anchor('/cgi-bin/milagro/report/index', 
	                         this.image[1].fetchHTML() );
	                         //'<img src="'+this.image[1].src+'">' );
	this.tab[2] = new Anchor('/cgi-bin/milagro/ops/index', 
	                         this.image[2].fetchHTML() );
	                         //'<img src="'+this.image[2].src+'">' );
	this.tab[3] = new Anchor('/cgi-bin/milagro/model/index', 
	                         this.image[3].fetchHTML() );
	                         //'<img src="'+this.image[3].src+'">' );
	this.tab[4] = new Anchor('/cgi-bin/milagro/research/index', 
	                         this.image[4].fetchHTML() );
	                         //'<img src="'+this.image[4].src+'">' );
	this.tab[5] = new Anchor('/milagro/missions/missions.html', 
	                         this.image[5].fetchHTML() );
	                         //'<img src="'+this.image[5].src+'">' );
	this.tab[6] = new Anchor('/milagro/other/index.html', 
	                         this.image[6].fetchHTML() );
	                         //'<img src="'+this.image[6].src+'">' );
}
