<!-- <SCRIPT LANGUAGE="JavaScript">
<!-- Begin

var mdisplay = false;
var now = new Date();
var mm = now.getMonth()+1;
var dd = now.getDate();
var txt = "";
var url = "";
var alt = "";
var banner= "";

if ((mm==1 && dd<=31)) {
mdisplay = true;
txt="It's time to get ready for your annual Pinewood Derby.";
url="index.htm";
alt="";
banner=""
}

if ((mm==0 && dd>7) || (mm==0 && dd<=27)) {
mdisplay = true;
txt="Bring your car to the Pima County Fair April 19, 20 and 26, 27 at 2:00pm.  Dave will have this track setup in the Pima Hall.  There will be two classes to enter your car.  An Open class, and a BSA Rules Class.  Open to all ages.  For more information, contact Dave at (520) 235-6720.";
url="index.htm";
alt="";
banner=""
}

if ((mm==9 && dd>14) || (mm==10) || (mm==11) || (mm==12)) {
mdisplay = true;
txt="Plan ahead for your annual Pinewood Derby.";
url="index.htm";
alt="";
banner=""
}

if (mdisplay && !(alt == "")) {
document.write('<center>');
document.write('<a href=\"', url, '"><img src="', banner, '" alt="', alt,'" border="0"><br>');
document.write('<font face="Arial"><small>' + txt + '</small></a>');
document.write('</font></center>')
}

if (mdisplay && (alt == "")) {
document.write('<center>');
document.write('<font face="Arial"><small>' + txt + '</small></a>');
document.write('</font></center>')
}

// End -->
<!-- </SCRIPT>