// Seasonal banner change
var d=new Date();

var month=new Array(12);
month[0]="January";
month[1]="February";
month[2]="March";
month[3]="April";
month[4]="May";
month[5]="June";
month[6]="July";
month[7]="August";
month[8]="September";
month[9]="October";
month[10]="November";
month[11]="December";

var currentMonth =  month[d.getMonth()];

if (currentMonth == "January") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Winter.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "February") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Winter.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "March") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Spring.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "April") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Spring.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "May") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Spring.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "June") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Summer.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "July") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Summer.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "August") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Summer.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "September") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Fall.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "October") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Fall.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "November") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Fall.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}
else if (currentMonth == "December") {
document.write('<a href="register/default.aspx"><img src="http://cdn.driveredtogo.com/images/seasonal/Driver_Ed_Banner_Holiday.gif" alt="Online Driver&apos;s Ed For just $19.99" width="254" height="45" border="0" /></a>');
}