var n3 = false;
image1 = new Image();
// Place your first image within the
// quotation marks on the line below.
image1.src = "mouse_off1.gif";
image1on = new Image();
// Place your second image within the
// quotation marks on the line below.
image1on.src = "mouse_on1.gif"
image2 = new Image();
// Place your first image within the
// quotation marks on the line below.
image2.src = "mouse_off2.gif";
image2on = new Image();
// Place your second image within the
// quotation marks on the line below.
image2on.src = "mouse_on2.gif"
function on3(name)
{
document[name].src = eval(name + "on.src");
}
function off3(name)
{
document[name].src = eval(name + ".src");
}
n3 = true;
function on(name)
{
if (n3)
on3(name);
}
function off(name)
{
if (n3)
off3(name);
}
">
| « | May 2012 | » | ||||
| S | M | T | W | T | F | S |
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 | ||
Newer | Latest | Older