Date bar arrows still aren't working with mouse hover =) With FireFox it says "Go to next day" on both up & down. On IE it says "Go to previous date" on both up & down
Also up arrow uses previous day function, when it goes to next day. And down arrow uses next day function, when it goes to previous day
They work right, but you should change the function names function nextDay(id) and function prevDay(id) other way around. Then first javascript=prevday, first title=previous and second javascript=nextday, second alt=next day.
This is wrong (current source):
<a name="_Wednesday_September_12th_2007"></a>
<table class="datebox" width="100%" cellpadding="0" cellspacing="0"><tr><td>Wednesday, September 12th 2007</td><th><a title="
Go to next day" href="
javascript:nextDay('Wednesday_September_12th_2007')"><img src="/images/datebox_dn.gif" alt="Go to previous day" width="16" height="16" border="0" /></a><a title="Go to next day" href="
javascriptrevDay('Wednesday_September_12th_2007')"><img src="/images/datebox_up.gif" alt="
Go to previous day" width="16" height="16" border="0" /></a></th>
</tr></table> <div id="Wednesday_September_12th_2007" style="margin-left:8px">
This would be right (if you also change the function names nextDay(id) & prevDay(id ) other way around):
<a name="_Wednesday_September_12th_2007"></a>
<table class="datebox" width="100%" cellpadding="0" cellspacing="0"><tr><td>Wednesday, September 12th 2007</td><th><a title="
Go to previous day" href="
javascriptrevDay('Wednesday_September_12th_2007')"><img src="/images/datebox_dn.gif" alt="
Go to previous day" width="16" height="16" border="0" /></a><a title="
Go to next day" href="
javascript:nextDay('Wednesday_September_12th_2007')"><img src="/images/datebox_up.gif" alt="
Go to next day" width="16" height="16" border="0" /></a></th>
</tr></table> <div id="Wednesday_September_12th_2007" style="margin-left:8px">