|
help with image rollover script
I have written a javascript to do image rollover on my site however the script is changing the worng image, sometimes and works fine other times.
Below is the souces code to one page of my site. If you could please tell me what is worng I would be very thankful to you.
alright here the code
php Code:
Original
- php Code |
|
|
|
<HTML> <Head> <BASE HREF="http://69.76.174.153/~chris/"> <Title>Bat ;; Pictures</Title> <link REL="shortcut icon" HREF="images/Chris.ico"> <link REL=stylesheet HREF="./style_sheet.css" TYPE="text/css"> <!-- below is the javacode for image rollover --> <SCRIPT LANGUAGE="JavaScript"> function hover(name,image,over) { if(window.document.images) { if (over) window.document.images[name].src = "images/" + image + "_rollover.gif"; else window.document.images[name].src = "images/" + image + ".gif"; } } </script> </header> <Body BGCOLOR="#000000"> <CENTER> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td width="630" style="vertical-align: top;"> <table cellpadding="0" cellspacing="0" border="0"> <tr> <td width="630" style="vertical-align: top;"> <!-- This is the Where the header Code goes --> <img src="images/header-2.gif"> <!-- Below is the code for the toolbar --> <Table cellpadding="0" cellspacing="0" border="0"> <tr> <td> <img BORDER="0" name="lt_end" src="images/lt_end.gif"> </td> <td> <a href="index.php" onMouseOver="hover('home','home',true)" onMouseOut="hover('home','home',false)"><img name="home" src="images/home.gif" border=0></a> </td> <td> <img BORDER="0" name="spacer" src="images/spacer.gif"> </td> <td> <a href="pictures/" onMouseOver="hover('pictures','pictures',true)" onMouseOut="hover('pictures','pictures',false)"><img name="pictures" src="images/pictures.gif" border=0></a> </td> <td> <img BORDER="0" src="images/middle.gif"> </td> <td> <a href="staff/" onMouseOver="hover('staff','staff',true)" onMouseOut="hover('staff','staff',false)"><img name="staff" src="images/staff.gif" border=0></a> </td> <td> <img BORDER="0" name="rt_end" src="images/rt_end.gif"> </td> </tr> </Table> <!-- Above is the code for the toolbar --> </td> </tr> <tr> <td width="630" style="vertical-align: top;"> <table Border="0"> <tr> <td width="300" style="vertical-align: top;"> <table> <tr> <td> <img name="fire1" src="images/fire.gif"> </td> <td> <img name="title" src="images/Stone.jpg"> </td> <td> <img name="fire2" src="images/fire.gif"> </td> </tr> </table> <p>...</p> </td> <td width="330" style="vertical-align: top;"><br> <center><Font Size="7" Color="#FFFFFF">Galleries</font><br> <table border="1"CELLPADDING='0" CELLSPACING='0 BORDERCOLOR="1A1A1A"> <tr> <td width="165" style="vertical-align: top;"> <!-- First column of galleries --> <img name="01" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=CAD" onMouseOver="hover('01','rd_ball',true);" onMouseOut="hover('01','rd_ball',false);" class="l">CAD</a><br> <img name="02" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=rimes" onMouseOver="hover('02','rd_ball',true);" onMouseOut="hover('02','rd_ball',false);" class="l">LeAnn Rimes</a><br> <img name="03" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=mccann" onMouseOver="hover('03','rd_ball',true);" onMouseOut="hover('03','rd_ball',false);" class="l">Lila McCann</a><br> <img name="04" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=me" onMouseOver="hover('04','rd_ball',true);" onMouseOut="hover('04','rd_ball',false);" class="l">Me</a><br> <img name="05" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=paintball" onMouseOver="hover('05','rd_ball',true);" onMouseOut="hover('05','rd_ball',false);" class="l">Paintball</a><br> </td> <td width="165" style="vertical-align: top;"> <!-- Second column of galleries --> <img name="06" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=space" onMouseOver="hover('06','rd_ball',true);" onMouseOut="hover('06','rd_ball',false);" class="l">Space</a><br> <img name="07" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=spiderman" onMouseOver="hover('07','rd_ball',true);" onMouseOut="hover('07','rd_ball',false);" class="l">Spiderman</a><br> <img name="08" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=startrek" onMouseOver="hover('08','rd_ball',true);" onMouseOut="hover('08','rd_ball',false);" class="l">Star Trek</a><br> <img name="09" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=wallpapers" onMouseOver="hover('09','rd_ball',true);" onMouseOut="hover('09','rd_ball',false);" class="l">Wallpapers</a><br> <img name="10" src="images/rd_ball.gif" border="0"><a href="pictures/index.php?gallery=misc" onMouseOver="hover('10','rd_ball',true);" onMouseOut="hover('10','rd_ball',false);" class="l">Misc.</a><br> </td> </tr> </table> </td> </tr> </table> .... </Body> </HTML>
|