Well, the image names seems to be ok... and there's a lot more script if you wanna check it out. www.roadrashmag.com
And yeah, I guess I did only put mm_menu.js in once... should I have it more?
Main Topics
Browse All TopicsI'm not really sure what the actual problem is here, but I assume that it has something to do with the JScript on the page I'm building. I believe this because I know that Firefox tends to repair and/or overlook some script errors and make the page function correctly. I'm building a relatively simple page with HTML and JScript... When the page loads up within FireFox everything works fine, but when its opened in IE the main context of the page, a slice containing a picture, doesn't appear. I'm getting rather frustrated with it because I've had little sleep and am on a deadline. Here's some of the code and some error messages that might be relevant:
The preload script:
<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#666666" onLoad="MM_preloadImages('
The code for the slice that should contain the image:
<td rowspan="14" colspan="16" valign="top" bgcolor="#666666"><img src="photos/1104/cover.jpg
And here are some debugging errors that I came across when trying to debug it within IE:
http://www.roadrashmag.com
Warning 5002 variable "l" already defined
The variable name was already used inside this function.
Any help would be appreciated...
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Well, the image names seems to be ok... and there's a lot more script if you wanna check it out. www.roadrashmag.com
And yeah, I guess I did only put mm_menu.js in once... should I have it more?
Looking at your function it.... are you not missing some brackets;
function MM_preloadImages()
{ //v3.0
var d=document;
if(d.images)
{
if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_pre
for(i=0; i<a.length; i++)
{ <-------------------------
if (a[i].indexOf("#")!=0)
{
d.MM_p[j]=new Image;
d.MM_p[j++].src=a[i];
}
} <-------------------------
}
}
Unless i'm missing something!
Easynow
Business Accounts
Answer for Membership
by: Drift3rPosted on 2004-12-22 at 21:07:06ID: 12890226
Probably nothing to do with your problem ... but you're loading on javascript "/photos/1104/cover.jpg" but using "photos/1104/cover.jpg" on IMG.
'INSERT LOTS MORE IMAGES HERE' <- I suppose you haven't put that on your code.
One other thing ... do you have any image with a name that can cause problems in javascript? like a name with ' ?
Your image may terminate the string and everything falls apart.
You only included mm_menu.js once?