						// Scrollers width here (in pixels)
						var scrollerwidth="246px"

						// Scrollers height here
						var scrollerheight="174px"

						// Scrollers speed here (larger is faster 1-10)
						var scrollerspeed=1



						// Scrollers content goes here! Keep all of the message on the same line!

						var scrollercontent = '<center><font face="Arial" color="black" size="3"><b>';

						
						scrollercontent = scrollercontent + '&#34;We have used Daniel Bent before and will definitely call him for future work. He is professional, respectful and knowledgeable. And a really nice guy!!<br/>- Donna<br><br><br>';

						scrollercontent = scrollercontent + '&#34;I have referred Rob Moss to many people and in fact, even invited my friend to come while he was working on my computer to introduce them! He not only has skills but is a pleasure to talk to.<br/> - Cybele<br><br><br>';
						
						scrollercontent = scrollercontent + '&#34;Derek Mroz is a invaluable resource for home computing needs. Great service for a reasonable price!<br/> - Dianne<br><br><br>';

						scrollercontent = scrollercontent + '&#34;Derek Mroz was most pleasant and professional. I would not hesitate to use him again. Thanks.<br/> - Irene<br><br><br>';

						scrollercontent = scrollercontent + '&#34;Derek Mroz was very helpful<br> Thanks!&#34;<br/>- Jim!<br><br><br>';

						scrollercontent = scrollercontent + '&#34;Thank you James Rice for a very satisfying and professional job well done! I&#39;ll be calling next week to have you return for more of the same wonderful instruction. To the Trusted Technology Advisors James rates a ten across the board. Thanks for coming in to Houston!&#34;<br/> - Bob<br/><br/><br/>';

						scrollercontent = scrollercontent + '&#34;James Rice was most helpful and willing to stay/come back until the computers were running well. I would definitely recommend James to my friends and family.&#34;<br/> - Annemarie<br/><br/><br/>'

						scrollercontent = scrollercontent + '&#34;Thanks for the maintenance instruction.<br>It was very nicely put together.<br>I didn&#39;t have any trouble following it at all.&#34;<br>Brenda<br><br/><br/>';
						
						scrollercontent = scrollercontent + '&#34;Thanks so much for helping<br>me with the printer.<br>Hopefully I won&#39;t have any more trouble with it but if I do<br>I will let you know.&#34;<br>Debbie<br><br/><br/>';
						
						scrollercontent = scrollercontent + '&#34;You have been a true<br>life-saver for me!<br>Thank you&#34;<br>Sylvia<br><br><br>';
				
						scrollercontent = scrollercontent + '&#34;Thanks for coming by last night. We were impressed with<br>your knowledge.<br>The computer works great now.<br>Regards,&#34;<br>Sam<br><br><br>';

						scrollercontent = scrollercontent + '&#34;Thanks for your help- Luke was still beaming about his &quot;new look&quot; computer before<br>going to bed.<br>Nice to see you as always.&#34;<br>Dr. Bob<br><br>';

						scrollercontent = scrollercontent + '&#34;Thank you for all your time and very quick service.<br>I will highly recommend you to all our friends.&#34;<br>Pat<br><br><br/>';

						scrollercontent = scrollercontent + '&#34;Many thanks for your assistance in cleaning<br>up my computer.<br>Special thanks for the Routine Tasks list, hopefully that will assist me in maintaining<br>it in better shape.<br>I will contact you when I have assembled a few items<br>where I need help.<br>Thanks again!&#34;<br>Grant<br/><br/><br/>';
						
						scrollercontent - scrollercontent + '&#34;Thanks for you help<br>the other day.<br>I will be sure to pass your name along to anyone who can use your services.<br>Have a great day and I<br>will talk to you soon!<br>Cheers,&#34;<br>Darryn<br><br><br>';

						scrollercontent = scrollercontent + '&#34;I certainly feel more confident using the computer now.<br>Thank you,&#34;<br>Kathleen<br><br><br>';

						scrollercontent = scrollercontent + '<br></b></font><center>';

						var pauseit=1


						// Change nothing below!

						scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
						var copyspeed=scrollerspeed
						var iedom=document.all||document.getElementById
						var actualheight=''
						var cross_scroller, ns_scroller
						var pausespeed=(pauseit==0)? copyspeed: 0

						function populate(){
						if (iedom){
						cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
						cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
						cross_scroller.innerHTML=scrollercontent
						actualheight=cross_scroller.offsetHeight
						}
						else if (document.layers){
						ns_scroller=document.ns_scroller.document.ns_scroller2
						ns_scroller.top=parseInt(scrollerheight)+8
						ns_scroller.document.write(scrollercontent)
						ns_scroller.document.close()
						actualheight=ns_scroller.document.height
						}
						lefttime=setInterval("scrollscroller()",20)
						}
						window.onload=populate

						function scrollscroller(){

						if (iedom){
						if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
						cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
						else
						cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
						}
						else if (document.layers){
						if (ns_scroller.top>(actualheight*(-1)+8))
						ns_scroller.top-=copyspeed
						else
						ns_scroller.top=parseInt(scrollerheight)+8
						}
						}

						if (iedom||document.layers){
						with (document){
						if (iedom){
						write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
						write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
						write('</div></div>')
						}
						else if (document.layers){
						write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
						write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
						write('</ilayer>')
						}
						}
						}