function Constants () {

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

	// the name of the banner image
	this.bannerName = "/cupido/gif/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://catalog.eol.ucar.edu/cupido/",
			         "Go To CUPIDO", "Go To CUPIDO");

	// the image tags that are the tabs
	// new Image( SRC, ALT, WIDTH, HEIGHT )
	this.image = new Array();
        this.image[0] = new tabImage( "/cupido/gif/home_off.gif",
                                   "Catalog Home", 106, 35);
        this.image[1] = new tabImage( "/cupido/gif/report_off.gif",
                                   "Project Reports", 106, 35);
        this.image[2] = new tabImage( "/cupido/gif/product_off.gif",
                                   "Operational Data Products", 106, 35);
        this.image[3] = new tabImage( "/cupido/gif/model_off.gif",
                                   "Model/Forcast Products", 114, 35);
        this.image[4] = new tabImage( "/cupido/gif/research_off.gif",
                                   "Research Data Products", 106, 35);
        this.image[5] = new tabImage( "/cupido/gif/mission_off.gif",
                                   "RICO Missions", 106, 35);
        this.image[6] = new tabImage( "/cupido/gif/other_off.gif",
                                   "Tools and misc. info", 106, 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('/cupido/index.html', 
	                         this.image[0].fetchHTML() );
	this.tab[1] = new Anchor('/cgi-bin/cupido/report/index', 
	                         this.image[1].fetchHTML() );
	                         //'<img src="'+this.image[1].src+'">' );
	this.tab[2] = new Anchor('/cgi-bin/cupido/ops/index', 
	                         this.image[2].fetchHTML() );
	                         //'<img src="'+this.image[2].src+'">' );
	this.tab[3] = new Anchor('/cgi-bin/cupido/model/index', 
	                         this.image[3].fetchHTML() );
	                         //'<img src="'+this.image[3].src+'">' );
	this.tab[4] = new Anchor('/cgi-bin/cupido/research/index', 
	                         this.image[4].fetchHTML() );
	                         //'<img src="'+this.image[4].src+'">' );
	this.tab[5] = new Anchor('/cupido/missions/missions.html', 
	                         this.image[5].fetchHTML() );
	                         //'<img src="'+this.image[5].src+'">' );
	this.tab[6] = new Anchor('/cupido/other/index.html', 
	                         this.image[6].fetchHTML() );
	                         //'<img src="'+this.image[6].src+'">' );
}
