  <!-- JJ
	var aqiday = new Array();
	var aqi = new Array();
	var aqicode = new Array();
	var actionday = new Array();
	var aqiclass = new Array();
	var aqimessage = '<h2>No Air Pollution <br>Action Day Today</h2>';
	var actiondaydates = ""
	
	aqiclass = ['good', 'moderate', 'unhealthy-sensitive', 'unhealthy', 'very-unhealthy', 'hazardous'];
	aqicode =  ['Good', 'Moderate', 'Unhealthy for Sensitive Groups', 'Unhealthy', 'Very Unhealthy', 'Hazardous'];
  	
	
	
	// Do Not Edit Anything Above This Line
	// Edit the aqiday and aqi arrays only
	// aqi:  1=good, 2=moderate, 3=unhealthy for sensitive people, 4=unhealthy, 5=very unhealthy, 6=hazardous
		
		aqiday = ['03/11','03/12','03/13'];
		aqi = [2, 2, 2];
		actionday = [0, 0, 0];
		
	// Do Not Edit Anything Below This Line
	
	
	today = new Date();
	thisyear = today.getFullYear();
	for(i=0; i<actionday.length; i++)
		{
			if (actionday[i]==1)
				{fulldate = new Date(thisyear,(aqiday[i].substr(0,2)-1), aqiday[i].substring(3,5));
				actiondaydates = actiondaydates + fulldate.toLocaleDateString() + "<br>";}
		}
	
	
	if (actiondaydates.length>0){aqimessage = '<h2><font color="red">An Air Pollution Action Day has been called for:<br> ' + actiondaydates + '</font></h2><p><a href="apad.pdf">Click here for more information.</a>'}
	document.write('<table align="center" cellpadding="10"><tr><td><IMG SRC="/images/hot_white.gif" WIDTH=34 HEIGHT=63></td>');
	document.write('<td align="center">'+aqimessage+'</td>');
	document.write('<td valign="middle"><table width="100%" cellpadding=5><tr><td colspan="5">');
	document.write('<center><b>Air Quality Index Forecast</b></center></td></tr><tr>');

	for(i=0; i<aqi.length; i++)
		{
		document.write('<td width="33%" align="center" class="'+aqiclass[aqi[i]-1]+'"><u>'+aqiday[i]+'</u><br>'+aqicode[aqi[i]-1]+'</td>');
		}
    document.write('</tr></table></td></tr></table>');
	
//-->


