// JavaScript Document
	//Randomizer Generator
			<!-- Begin
				// Set up the image files to be used.
				var theAgency = new Array() 
				var theAgencyURL = new Array()
				var theAgencyTitle = 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'
					theAgency[12] = '../adbanners/images/s_losco.jpg'

					theAgencyURL[0] = 'http://www.dotd.louisiana.gov'
					theAgencyURL[1] = 'http://www.dnr.louisiana.gov'
					theAgencyURL[2] = 'http://www.deq.louisiana.gov'
					theAgencyURL[3] = 'http://www.dss.louisiana.gov/'
					theAgencyURL[4] = 'http://www.dhh.louisiana.gov/'
					theAgencyURL[5] = 'http://www.doe.louisiana.gov'
					theAgencyURL[6] = 'http://www.wlf.louisiana.gov'
					theAgencyURL[7] = 'http://www.laworks.net'
					theAgencyURL[8] = 'http://www.norpc.org/'
					theAgencyURL[9] = 'http://www.louisiana.gov'
					theAgencyURL[10] = 'http://www.ldaf.louisiana.gov/'
					theAgencyURL[11] = 'http://www.lded.state.la.us/' 
					theAgencyURL[12] = 'http://lagic.lsu.edu/loscoweb'
					
					theAgencyTitle[0] = 'LA Dept. of Transportation & Development'
					theAgencyTitle[1] = 'LA Dept. of Natural Resources'
					theAgencyTitle[2] = 'LA Dept. of Environmental Quality'
					theAgencyTitle[3] = 'LA Dept. of Social Services'
					theAgencyTitle[4] = 'LA Dept. of Health & Hospitals'
					theAgencyTitle[5] = 'LA Dept. of Education'
					theAgencyTitle[6] = 'LA Dept. of Wildlife & Fisheries'
					theAgencyTitle[7] = 'LA Dept. of Labor'
					theAgencyTitle[8] = 'LA Regional Planning Commission '
					theAgencyTitle[9] = 'Louisiana.gov Information Portal'
					theAgencyTitle[10] = 'LA Dept. of Agriculture & Forestry'
					theAgencyTitle[11] = 'LA Dept. of Economic Development'
					theAgencyTitle[12] = 'Louisiana Oil Spill Coordinators Office'
					
					var j = 0
					var agpic= theAgency.length;
					var preBuffer = new Array()
					for (j = 0; j < agpic; j++){
					   preBuffer[j] = new Image()
					   preBuffer[j].src = theAgency[j]
					}
					var AgencyImage = Math.round(Math.random()*(agpic-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[AgencyImage] + '" target="_blank" title="' + theAgencyTitle[AgencyImage] +'" ><img src="' + theAgency[AgencyImage] + '" border="0"></td>');  
						//document.write('	</tr>');
						//document.write('</table>');
						document.write('<a href="' +theAgencyURL[AgencyImage] + '" target="_blank" title="' + theAgencyTitle[AgencyImage] +'" ><img src="' + theAgency[AgencyImage] + '" border="0"></a>');
					//}

					
			//  End -->