I 'get it' now. That is strange and although there may be a simple explanation and fix, there may not be. What you do in the layout below the marquee really shouldn't be affecting it in this manner. However, you can make an adjustment to the speed, there are various ways but, this one should be sufficient (from your source code, changes red):
Code:
<script type="text/javascript">
/*
Cross browser Marquee script- © Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and Terms Of Use, visit http://www.dynamicdrive.com
Credit MUST stay intact
*/
//Specify the marquee's width (in pixels)
var marqueewidth="462px"
//Specify the marquee's height
var marqueeheight="16px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=document.body.filters? 1 : 5;
//configure background color:
var marqueebgcolor="transparent"
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1
//Specify the marquee's content (don't delete <nobr> tag)
//Keep all content on ONE line, and ba . . .
The 1 is for IE and the 5 is for all others. You may prefer a 2 or a 3. It is up to you. I think it is safe to do it this way as, the marquee was also slow in Opera. This will speed it up there in Opera, in FF and as I say, for all non-IE browsers.
About the load time of the page. Not much could possibly be slowing that down more than loading all of the images. Use thumbnails and optimize them. One of the strengths of lightbox is that it doesn't require preloading of the larger images, by using those for its thumbnails, you defeat that feature.
Also, there appears to be some QuickTime (tm) loaded with the page. Consider replacing that with Flash (generally loads faster), or getting rid of it entirely.
Bookmarks