	<!-- 
	/*
	        -------------------------------------------------------------------
			Random Image/Link JavaScript(tm) by Jim Matvichuk

			This code may be used freely as long as this copyright notice
			remains with the code.
			
							Copyright© 1997, Jim Matvichuk
							Jim_Matvichuk@compuserve.com
							All rights reserved

			Last Revision: August 19, 1997  
	        -------------------------------------------------------------------

			Instructions:
			There are two Script sections on this page to create the
			Random Image/Link. This section (which should be placed between
			your HEAD tags, after the title and any meta tgas) and the section 
			in the body of this document.
	 
			You will need both sections to display the Image/link.
	   
			Change the array elements:     ae_('your href and/or image');
			in this section AND place the Javascript section in the body of this 
			document between your BODY tags where you want it to appear.

	*/
	// Global vars----
	G_total_sa = 0;                                 // total random elements
	G_day = new Date();                             // date for seed
	G_seed = G_day.getTime();                       // G_seed for random number


	//---CHANGE THESE ARRAY ELEMENTS TO YOUR LINK/IMAGE
	//---ADD/SUBTRACT AS MANY AS YOU NEED
	// Just replace your URL and image tags between the single quotes:  
	// ae_('   your stuff here   ');

	ae_('<IMG SRC="Images/capitol_front_with_flowers_with_text.jpg" WIDTH="406" HEIGHT="322" BORDER="0" ALT="capitol_front_with_flowers_with_text.jpg - 41121 Bytes" TITLE="California State Capitol Building Facing Capitol Mall" LONGDESC="Images/ImageDescriptions/capital_front_with_flowers_with_text.txt"><BR>');
	ae_('<IMG SRC="Images/capitol_park_with_text.jpg" WIDTH="406" HEIGHT="322" BORDER="0" ALT="capitol_park_with_text.jpg - 49530 Bytes" TITLE="Capitol Park Directly East Of The State Capitol Building" LONGDESC="Images/ImageDescriptions/capitol_park_with_text.txt"><BR>');
	ae_('<IMG SRC="Images/greek_influence_with_text.jpg" WIDTH="406" HEIGHT="322" BORDER="0" ALT="greek_influence_with_text.jpg - 32946 Bytes" TITLE="Statues Depicting Greek Influence on Modern Government" LONGDESC="Images/ImageDescriptions/greek_influence_with_text.txt"><BR>');
	ae_('<IMG SRC="Images/capitol_mosaic_with_text.jpg" WIDTH="406" HEIGHT="322" BORDER="0" ALT="capitol_mosaic_with_text.jpg - 54709 Bytes" TITLE="Original Mosaic Flooring from State Capitol Building" LONGDESC="Images/ImageDescriptions/mosaic_with_text.txt"><BR>');
	ae_('<IMG SRC="Images/capitol_rotunda_with_text.jpg" WIDTH="406" HEIGHT="322" BORDER="0" ALT="capitol_rotunda_with_text.jpg - 41396 Bytes" TITLE="Capitol Dome Rotunda" LONGDESC="Images/ImageDescriptions/rotunda_with_text.txt"><BR>');
	ae_('<IMG SRC="Images/capitol_seal_with_text.jpg" WIDTH="406" HEIGHT="322" BORDER="0" ALT="capitol_seal_with_text.jpg - 49473 Bytes" TITLE="Great Bronze Seal of California, near Western Entrance of State Capitol.  It was created by inmates at San Quentin Prison." LONGDESC="Images/ImageDescriptions/state_seal_with_text.txt"><BR>');

	//------------------------------------------------------------------------
	// Function to Create image/link Object Array
	//------------------------------------------------------------------------
	function ae_ (description) {
			G_total_sa++;
			sa [G_total_sa] = description;
	}

	//------------------------------------------------------------------------
	// function to create a random number from 1 to total number
	// of array elements
	//------------------------------------------------------------------------
	function rand() {
	RN = parseInt(((G_seed - (parseInt(G_seed/1000,10) * 1000))/10)/100*G_total_sa + 1,10);
			return RN;
	}

	///////////////////////////////////////////////////////////////////
	// CREATE THE image/link OBJECT ARRAY
	function sa () {}

	//---------------- done with setup-----------------------//

	//-->