// Global vars----
G_total_ma = 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');

//---GALLERY
ae_("<a href='1000-home.htm'><img border=0 src='Images/hundred_header01.gif'></a>");
ae_("<a href='1000-home.htm'><img border=0 src='Images/hundred_header01b.gif'></a>");
ae_("<a href='1000-home.htm'><img border=0 src='Images/hundred_header01c.gif'></a>");
						
//------------------------------------------------------------------------------------
// Function to Create image/link Object Array
//------------------------------------------------------------------------------------
function ae_ (description) {
	G_total_ma++;
	ma [G_total_ma] = 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_ma + 1,10);
	return RN;
}

///////////////////////////////////////////////////////////////////
// CREATE THE image/link OBJECT ARRAY
function ma () {}

//---------------- done with setup-----------------------//
