// Global vars----
G_total_pa = 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 target=_GABY href='http://angelgaby.livejournal.com'><img border=0 src='Images-other/angelgaby_banner01a.jpg'></a>");
ae_("<a target=_VANESSA href='http://www.myspace.com/4326484'><img border=0 src='Images-other/vanessa_banner01.jpg'></a>");
ae_("<a target=_MORGAINE href='http://ladymorgaine81.livejournal.com/'><img border=0 src='Images-other/ladymorgaine_banner01.jpg'></a>");
ae_("<a target=_JENNIFER href='http://www.myspace.com/jennifermanaloto'><img border=0 src='Images-other/jennifer_banner01.jpg'></a>");
ae_("<a target=_ANNETT href='http://therealone-.livejournal.com'><img border=0 src='Images-other/therealone_banner01a.jpg'></a>");
ae_("<a target=_ANOUCK href='http://www.anoucksdream.com'><img border=0 src='http://i28.photobucket.com/albums/c219/xjaymanx/banner005b.jpg'></a>");
		
//------------------------------------------------------------------------------------
// Function to Create image/link Object Array
//------------------------------------------------------------------------------------
function ae_ (description) {
	G_total_pa++;
	pa [G_total_pa] = 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_pa + 1,10);
	return RN;
}

///////////////////////////////////////////////////////////////////
// CREATE THE image/link OBJECT ARRAY
function pa () {}

//---------------- done with setup-----------------------//
