	//Specify the marquee's width (in pixels)
			var marqueewidth=125
	//Specify the marquee's height
			var marqueeheight=500
	//Specify the marquee's scroll speed (larger is faster)
			var speed=5
	//Specify the marquee contents
			var marqueecontents='<a href="#" style="text-decoration:none"><img src="images/scroll_book175.gif" border="0" alt="Yogi" ></a><br><br> <a href="#" style="text-decoration:none"><img src="images/scroll_book001.gif" border="0" alt="Book 001"></a><br> <br><a href="#" style="text-decoration:none"><img src="images/scroll_book014.gif" border="0" alt="Book 014"></a><br> <br><a href="#" style="text-decoration:none"><img src="images/scroll_book015.gif" border="0" alt="Book 015"></a><br><br><a href="#" style="text-decoration:none"><img src="images/scroll_book016.gif" border="0" alt="Book 016"></a><br><br> <a href="#" style="text-decoration:none"><img src="images/scroll_book022.gif" border="0" alt="Book 022"></a><br><br> <a href="#" style="text-decoration:none"><img src="images/scroll_book100.gif" border="0" alt="Book 100"></a><br><br> <a href="#" style="text-decoration:none"><img src="images/scroll_book101.gif" border="0" alt="Book 101"></a><br><br><a href="#" style="text-decoration:none"><img src="images/scroll_book102.gif" border="0" alt="Book 102"></a><br><br><a href="#" style="text-decoration:none"><img src="images/scroll_book103.gif" border="0" alt="Book 103"></a>'<!--<br>• <a href="#" style="text-decoration:none"><font color="#000000">End</font></a></font>' -->

if (document.all)
document.write('<marquee direction="up" onMouseover="stop()" onMouseout="start()" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2
      
