Need help with mouseover images

They have: 20 posts

Joined: Nov 2001

Ugh. Can someone please take a look at the following page and offer some insight as to why I am getting a small black line below my mouseover images?

http://www.kentonfriendsofyouth.org/skyjuice/home.htm

My script has no reference that I can tell of that would cause this. Has anyone experienced this issue before?

Thanks in advance for any help you may be able to offer!

EDIT: By the way, here is the text from the external .js file I'm referencing:

img0_on = new Image();
img0_on.src="images/button_bandinfo_ON.gif";
img1_on = new Image();
img1_on.src="images/button_showschedule_ON.gif";
img2_on = new Image();
img2_on.src="images/button_links_ON.gif";
img3_on = new Image();
img3_on.src="images/button_audiovisual_ON.gif";
img4_on = new Image();
img4_on.src="images/button_email_ON.gif";

img0_off = new Image();
img0_off.src="images/button_bandinfo_OFF.gif";
img1_off = new Image();
img1_off.src="images/button_showschedule_OFF.gif";
img2_off = new Image();
img2_off.src="images/button_links_OFF.gif";
img3_off = new Image();
img3_off.src="images/button_audiovisual_OFF.gif";
img4_off = new Image();
img4_off.src="images/button_email_OFF.gif";

function over_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_on.src");
}
function off_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_off.src");
}

Thanks!

mairving's picture

They have: 2,256 posts

Joined: Feb 2001

I couldn't tell for sure but usually that is caused by extra space in your cells. In other words, something like this:

has a couple of line breaks in it which can cause problems like this.
It should be:
with no extra space or line breaks.

Mark Irving
I have a mind like a steel trap; it is rusty and illegal in 47 states

They have: 20 posts

Joined: Nov 2001

I LOVE YOU! Thank you so much. I just made one long text line for the entire and that seemed to fix the issue. I cannot thank you enough. Thanks mairving

Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.