// JavaScript Document
	//Randomizer Generator
			<!-- Begin
				// Set up the image files to be used.
				var theAgency = new Array() 
				var theAgencyURL = new Array()
				var theAgencyDescription = new Array()
					// do not change this
					// To add more image files, continue with the
					// pattern below, adding to the array.

					theAgency[0] = '../adbanners/images/s_ldotd.jpg'
					theAgency[1] = '../adbanners/images/s_ldnr.jpg'
					theAgency[2] = '../adbanners/images/s_ldeq.jpg'
					theAgency[3] = '../adbanners/images/s_dss.jpg'
					theAgency[4] = '../adbanners/images/s_dhh.jpg'
					theAgency[5] = '../adbanners/images/s_doe.jpg'
					theAgency[6] = '../adbanners/images/s_lwf.jpg'
					theAgency[7] = '../adbanners/images/s_labor.jpg'
					theAgency[8] = '../adbanners/images/s_rpc.jpg'
					theAgency[9] = '../adbanners/images/s_infola.jpg'
					theAgency[10] = '../adbanners/images/s_ldaf.jpg'
					theAgency[11] = '../adbanners/images/s_lded.jpg'

					theAgencyURL[0] = 'http://www.dotd.state.la.us'
					theAgencyURL[1] = 'http://www.dnr.state.la.us'
					theAgencyURL[2] = 'http://www.ldeq.state.la.us'
					theAgencyURL[3] = 'http://www.dss.state.la.us'
					theAgencyURL[4] = 'http://www.dhh.state.la.us'
					theAgencyURL[5] = 'http://www.doe.state.la.us'
					theAgencyURL[6] = 'http://www.wlf.state.la.us'
					theAgencyURL[7] = 'http://www.laworks.net'
					theAgencyURL[8] = 'http://www.norpc.org/'
					theAgencyURL[9] = 'http://www.louisiana.gov'
					theAgencyURL[10] = 'http://www.ldaf.state.la.us'
					theAgencyURL[11] = 'http://www.lded.state.la.us/'
					
					theAgencyDescription[0] = 'Louisiana Dept. of Transportation & Development'
					theAgencyDescription[1] = 'Louisiana Dept. of Natural Resources'
					theAgencyDescription[2] = 'Louisiana Dept. of Environmental Quality'
					theAgencyDescription[3] = 'Louisiana Dept. of Social Service'
					theAgencyDescription[4] = 'Louisiana Dept. of Health & Hospitals'
					theAgencyDescription[5] = 'Louisiana Dept. of Education'
					theAgencyDescription[6] = 'Louisiana Dept. of Wildlife & Fisheries'
					theAgencyDescription[7] = 'Louisiana Dept. of Labor'
					theAgencyDescription[8] = 'Regional Planning Commission of LA'
					theAgencyDescription[9] = 'Louisiana.Gov'
					theAgencyDescription[10] = 'Louisiana Dept. of Agriculture & Forestry'
					theAgencyDescription[11] = 'Louisiana Dept. of Economic Development' 
					
					//var k = 0
					var Len = theAgency.length;
					var AgBuffer = new Array()
					for (m = 0; m < Len; m++){
					   AgBuffer[m] = new Image()
					   AgBuffer[m].src = theAgency[m]
					}
					var AgencyNum = Math.round(Math.random()*(Len-1));
					//function ShowBanner(){
					    document.write('<table width="130" height="216" valign="bottom" border="0">');
						document.write('	<tr>');
						document.write('		<td valign="bottom" align="center"><a href="' + theAgencyURL[AgencyNum] + '" target="_blank" class="orgbanners"><img src="' + theAgency[AgencyNum] + '" width="130" height="216" border="0" alt="' + theAgencyDescription[AgencyNum] +'"></a></td>');  
						document.write('	</tr>');
						document.write('</table>');
					//}

					
			//  End -->