/*
Cross browser Marquee II- © Dynamic Drive (www.dynamicdrive.com)
For full1 source code, 100's more DHTML scripts, and TOS, visit http://www.dynamicdrive.com
Modified by jscheuer1 for continuous content. Credit MUST stay intact for use
*/

//Specify the marquee's width (in pixels)
var marqueewidth1="125px"
//Specify the marquee's height
var marqueeheight1="910px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed1=1
//Specify initial pause before scrolling in milliseconds
var initPause=1000
//Specify start with Full(1)or Empty(0) Marquee
var full1=1
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit1=0
//Specify Break characters for IE as the two iterations
//of the marquee, if text, will be too close together in IE
var iebreak1='<p></p>'

//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that\'s great):

var marqueecontent1='<img src="rimgs/1.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/2.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/3.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/4.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/5.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/6.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/7.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/8.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/9.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/10.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/11.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/12.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/13.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/14.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/15.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/16.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/17.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/18.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/19.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/20.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/21.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/22.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/23.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/24.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/25.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/26.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/27.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/28.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/29.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/30.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/31.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/32.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/33.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/34.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/35.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/36.jpg" width="120" style="border:2px solid #FFFFFF" /><br /><img src="rimgs/37.jpg" width="120" style="border:2px solid #FFFFFF" />';


////NO NEED TO EDIT BELOW THIS LINE////////////
var copyspeed1=marqueespeed1
var pausespeed1=(pauseit1==0)? copyspeed1: 0
var iedom1=document.all||document.getElementById
var actualheight1=''
var cross_marquee1, cross_marquee12, ns_marquee1

function populate1(){
if (iedom1){
var lb=document.getElementById&&!document.all? '' : iebreak1
cross_marquee1=document.getElementById? document.getElementById("iemarquee1") : document.all.iemarquee1
cross_marquee12=document.getElementById? document.getElementById("iemarquee12") : document.all.iemarquee12
cross_marquee1.style.top=(full1==1)? '8px' : parseInt(marqueeheight1)+8+"px"
cross_marquee12.innerHTML=cross_marquee1.innerHTML=marqueecontent1+lb
actualheight1=cross_marquee1.offsetHeight
cross_marquee12.style.top=(parseInt(cross_marquee1.style.top)+actualheight1+8)+"px" //indicates following #1
}
else if (document.layers1){
ns_marquee1=document.ns_marquee1.document.ns_marquee12
ns_marquee1.top=parseInt(marqueeheight1)+8
ns_marquee1.document.write(marqueecontent1)
ns_marquee1.document.close()
actualheight1=ns_marquee1.document.height
}
setTimeout('lefttime=setInterval("scrollmarquee1()",20)',initPause)
}
window.onload = function () {
  populate();
  populate1();
};

function scrollmarquee1(){

if (iedom1){
if (parseInt(cross_marquee1.style.top)<(actualheight1*(-1)+8))
cross_marquee1.style.top=(parseInt(cross_marquee12.style.top)+actualheight1+8)+"px"
if (parseInt(cross_marquee12.style.top)<(actualheight1*(-1)+8))
cross_marquee12.style.top=(parseInt(cross_marquee1.style.top)+actualheight1+8)+"px"
cross_marquee12.style.top=parseInt(cross_marquee12.style.top)-copyspeed1+"px"
cross_marquee1.style.top=parseInt(cross_marquee1.style.top)-copyspeed1+"px"
}

else if (document.layers1){
if (ns_marquee1.top>(actualheight1*(-1)+8))
ns_marquee1.top-=copyspeed1
else
ns_marquee1.top=parseInt(marqueeheight1)+8
}
}

if (iedom1||document.layers1){
with (document){
if (iedom1){
write('<div style="position:relative;width:'+marqueewidth1+';height:'+marqueeheight1+';overflow:hidden" onMouseover="copyspeed1=pausespeed1" onMouseout="copyspeed1=marqueespeed1">')
write('<div id="iemarquee1" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div><div id="iemarquee12" style="position:absolute;left:0px;top:0px;width:100%;z-index:100;background:white;">')
write('</div></div>')

}
else if (document.layers1){
write('<ilayer width='+marqueewidth1+' height='+marqueeheight1+' name="ns_marquee1">')
write('<layer name="ns_marquee12" width='+marqueewidth1+' height='+marqueeheight1+' left=0 top=0 onMouseover="copyspeed1=pausespeed1" onMouseout="copyspeed1=marqueespeed1"></layer>')
write('</ilayer>')
}
}
}
