I'm looking to implement an image change on specific dates (not days of the week, but actual calendar dates like August 18th, August 25th, September 3rd, etc).
Here's the div I'm working with:
<div id="matchday">
<img id="home" src="css/images/teams/home.png">
<span class="verses">V</span>
<img id="away" src="css/images/teams/away1.png">
</div>
My objective is to change the "away" image to away2.png, away3.png ... away20.png, etc., on specific match dates.
To add complexity, instead of having a default "away" image, I want the div to only be displayed on matchdays (the specified dates for image changes).