You have some other problems:
Code:
http://www.mideastbooks.com/images/waitingforisrael.jpg
and:
Code:
http://www.mideastbooks.com/books/waitingforisrael.html
are missing.
Your onload event (MM_preloadImages) is riddled with illegal characters. But even if it weren't, it is being overridden by the conveyor belt script's onload event. To deal with that, replace it with:
Code:
<body bgcolor="#F2611A" text="#000000" leftmargin="0" topmargin="0" marginwidth="1" marginheight="0" onload="fillup();MM_preloadImages('http://www.mideastbooks.com/images/h-home-on.gif','http://www.mideastbooks.com/images/h-home-off.gif','http://www.mideastbooks.com/images/h-contact-on.gif','http://www.mideastbooks.com/images/h-contact-off.gif','http://www.mideastbooks.com/images/h-israel-off.gif','http://www.mideastbooks.com/images/h-israel-on.gif','http://www.mideastbooks.com/images/h-islam-off.gif','http://www.mideastbooks.com/images/h-islam-on.gif','http://www.mideastbooks.com/images/h-genocides-off.gif','http://www.mideastbooks.com/images/h-genocides-on.gif','http://www.mideastbooks.com/images/h-holocaust-off.gif','http://www.mideastbooks.com/images/h-holocaust-on.gif','http://www.mideastbooks.com/images/h-terrorism-off.gif','http://www.mideastbooks.com/images/h-terrorism-on.gif','http://www.mideastbooks.com/images/h-titles-on.gif','http://www.mideastbooks.com/images/h-titles-off.gif','http://www.mideastbooks.com/images/h-authors-on.gif','http://www.mideastbooks.com/images/h-authors-off.gif','http://www.mideastbooks.com/images/h-antisemitism-on.gif','http://www.mideastbooks.com/images/h-antisemitism-off.gif','http://www.mideastbooks.com/images/h-miscellaneous-on.gif','http://www.mideastbooks.com/images/h-miscellaneous-off.gif','http://www.mideastbooks.com/images/h-history-on.gif','http://www.mideastbooks.com/images/h-history-off.gif','http://www.mideastbooks.com/images/h-camera-on.gif','http://www.mideastbooks.com/images/h-camera-off.gif')">
and remove:
Code:
window.onload=fillup
from the conveyor script.
Now, I'm not entirely clear on what you want to place in the conveyor with the images, but to do anything like that, you will need a table and a little extra height. So change:
Code:
var sliderheight="177px"
to (approximately):
Code:
var sliderheight="207px"
And change:
Code:
//Specify gap between each image (use HTML):
var imagegap=" "
to:
Code:
//Specify gap between each image (use HTML):
var imagegap="</td><td>"
And change:
Code:
leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
to:
Code:
leftrightslide='<table><tr><td>'+leftrightslide.join(imagegap)+'</td></tr></table>'
And change:
Code:
document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</span>')
to:
Code:
document.write('<div id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+leftrightslide+'</div>')
Once you have all that, you may include a <br> and whatever you want for each book, ex:
Code:
leftrightslide[0]='<a href="http://www.mideastbooks.com/books/israelahistory.html" onclick="popupWindow(this.href);return false;"><img src="http://www.mideastbooks.com/images/israelahistory.jpg" border=0></a><br>Whatever'
Bookmarks