<!--


/*** Feel free to use this script, just leave these comment lines. ***/
/***         Goetz's Banner Script copyright 1998 Lawrence Goetz   ***/
/***         goetz@lawrencegoetz.com http://www.lawrencegoetz.com/ ***/

	// Indicate how many images there are.
	var amount=11;


	// Array Function.
	function makeArray(len) {
		for (var i = 0; i < len; i++) 
			this[i] = null;
		this.length = len;
	}

	// Array Function for target in frames. 
	// You can adjust the default here if you like.
	// The default is _self.
	function makeTargetArray(len) {
		for (var i = 0; i < len; i++) 
			this[i] = "_self";
		this.length = len;
	}

	// Generate the array.
	image = new makeArray(amount);


	// Place your banner information here. Start at index number 0.

	image[0]="images/front_page_pictures/capsules_sm.jpg";
	

	image[1]="images/front_page_pictures/dg2_sm.jpg";
	

	image[2]="images/front_page_pictures/dg3_sm.jpg";


	image[3]="images/front_page_pictures/dragonfly_sm.jpg";


	image[4]="images/front_page_pictures/soyuz_sm.jpg";


	image[5]="images/front_page_pictures/celestium_sm.jpg";


	image[6]="images/front_page_pictures/space1999_sm.jpg";


	image[7]="images/front_page_pictures/ttm24_sm.jpg";


	image[8]="images/front_page_pictures/cev_lsam_sm.jpg";


	image[9]="images/front_page_pictures/atlantis_iss.jpg";


	image[10]="images/front_page_pictures/x15_x15d_sm.jpg";

	
	
	// Randomly pick a banner to display.
	function rand(n) {
		seed = (0x015a4e35 * seed) % 0x7fffffff;
		return (seed >> 16) % n;
	}
	        
	var now = new Date();
	var seed = now.getTime() % 0xffffffff;
	var position=rand(amount);



//-->