// JavaScript Document
	//Randomizer Generator
			<!-- Begin
				// Set up the image files to be used.
				var theOrg = new Array() 
				var theOrgURL = new Array()
				var theOrgTitle = new Array()
					// do not change this
					// To add more image files, continue with the
					// pattern below, adding to the array.

					theOrg[0] = 'http://lagic.lsu.edu/adbanners/images/o_iteam.gif'
					theOrg[1] = 'http://lagic.lsu.edu/adbanners/images/o_laurisa.gif'
					theOrg[2] = 'http://lagic.lsu.edu/adbanners/images/o_geodata.gif '
					theOrg[3] = 'http://lagic.lsu.edu/adbanners/images/o_nsgic.gif'
					theOrg[4] = 'http://lagic.lsu.edu/adbanners/images/o_nsdi.gif'
					theOrg[5] = 'http://lagic.lsu.edu/adbanners/images/o_wetland.gif'
					theOrg[6] = 'http://lagic.lsu.edu/adbanners/images/o_gisday.gif'
					theOrg[7] = 'http://lagic.lsu.edu/adbanners/images/o_ldeq_make-a-map.gif'
					theOrg[8] = 'http://lagic.lsu.edu/adbanners/images/o_louisianamap.gif'
					theOrg[9] = 'http://lagic.lsu.edu/adbanners/images/o_rsgis.gif'

					theOrgURL[0] = 'http://lagic.lsu.edu/i-team/'
					theOrgURL[1] = 'http://www.laurisa.lsu.edu/'
					theOrgURL[2] = 'http://www.geoall.net/'
					theOrgURL[3] = 'http://www.nsgic.org/'
					theOrgURL[4] = 'http://www.fgdc.gov/nsdi/nsdi.html'
					theOrgURL[5] = 'http://www.americaswetland.com'
					theOrgURL[6] = 'http://www.gisday.com'
					theOrgURL[7] = 'http://map.ldeq.org'
					theOrgURL[8] = 'http://www.map.la.gov.gov'
					theOrgURL[9] = 'http://www.larsgis.org'
					
					theOrgTitle[0] = 'Louisiana I-Team Web Site'
					theOrgTitle[1] = 'LA URISA Web Site'
					theOrgTitle[2] = 'GeoData Allaiance'
					theOrgTitle[3] = 'National State GIS Council'
					theOrgTitle[4] = 'National Spatial Data Infrastructure'
					theOrgTitle[5] = 'Americas Wetlands'
					theOrgTitle[6] = 'GIS Day Web Site'
					theOrgTitle[7] = 'LDEQs Make-A-Map'
					theOrgTitle[8] = 'LouisianaMAP!'
					theOrgTitle[9] = 'Louisiana Remote Sensing & GIS Workshop - 2007'
					
					var i = 0
					var p = theOrg.length;
					var preBuffer = new Array()
					for (i = 0; i < p; i++){
					   preBuffer[i] = new Image()
					   preBuffer[i].src = theOrg[i]
					}
					var OrgImage = Math.round(Math.random()*(p-1));
					//function ShowBanner(){
					    //document.write('<table width="130" height="216" valign="bottom" border="0">');
						//document.write('	<tr>');
						//document.write('		<td valign="bottom" class="heading"><a href="' +theAgencyURL[BannerImage] + '" target="_blank"><img src="' + theImages[BannerImage] + '" border="0"></td>');  
						document.write('<a href="' +theOrgURL[OrgImage] + '" target="_blank" title="' + theOrgTitle[OrgImage] +'"><img src="' + theOrg[OrgImage] + '" border="0"></a>');
						//document.write('	</tr>');
						//document.write('</table>');
					//}

					
			//  End -->