Part 1 :
I have this bit of code. It's a drop down menu and when it expands it shows the Month names.
I want it so that when you click on each month it will change the image of the calendar.
I made 12 images one for each month. How can I accomplish this task?
As you can see currently they are linked to a new page, I want to just have one "home_Page.html"
that can load all the images.
Part 2:
What code would change the month image according to the month we are on?
<ul id="Months">
<li><a href="#">Months</a>
<ul>
<li><a href="Jan_Page.html">Jan</a></li>
<li><a href="Feb_Page.html">Feb</a></li>
<li><a href="March_Page.html">Mar</a></li>
<li><a href="April_Page.html">Apr</a></li>
<li><a href="May_Page.html">May</a></li>
<li><a href="homePage.html">Jun</a></li>
<li><a href="July_Page.html">Jul</a></li>
<li><a href="Aug_Page.html">Aug</a></li>
<li><a href="Sep_Page.html">Sep</a></li>
<li><a href="Oct_Page.html">Oct</a></li>
<li><a href="Nov_Page.html">Nov</a></li>
<li><a href="Dec_Page.html">Dec</a></li>
</ul>
</li>
</ul>