// Scrollers content goes here! Keep all of the message on the same line! NO APOSTROPHES !!!! Use ’ instead

// Base path for quote images
base_path = "http://www.onlineadvantage.com.au/";


var testimonial_content='<p><img src="'+base_path+'resources/images/icon-lq.gif" /> It’s given me the ability to monitor and manage my branch’s profitability and inventory levels simply and reliably.<img src="'+base_path+'resources/images/icon-rq.gif" /><br /><strong>Jim Hicks</strong><br /><strong>Webforge</strong><br />Queensland Branch Manager</p><p><img src="'+base_path+'resources/images/icon-lq.gif" /> Now we can concentrate on growing our business knowing that our computer systems are being managed by dedicated IT professionals day and night, every day of the year.<img src="'+base_path+'resources/images/icon-rq.gif" /> <br /><strong>Paul Gee</strong><br /><strong>Webforge</strong><br />Regional Director</p><p><img src="'+base_path+'resources/images/icon-lq.gif" /> Recently, we integrated Online Advantage’s E-Commerce module that allows us to focus on providing better service to our existing customers in addition to providing information to new customers or retail customers for on-line purchasing. As a result of this powerful module, it has taken our E-Commerce orders from 0 to 4,000 since obtaining it three years ago. Our website has also achieved healthy results as a result of this implementation. We are thrilled with these stats.<img src="'+base_path+'resources/images/icon-rq.gif" /> <br /><strong>Ray Aurisch</strong><br />LW Reid<br />Managing Director</p><p><img src="'+base_path+'resources/images/icon-lq.gif" /> A totally integrated friendly system that works well and has the flexibility to allow us to get on with growing a profitable business.<img src="'+base_path+'resources/images/icon-rq.gif" /> <br /><strong>Mike Townsend</strong><br /><strong>Lesnies</strong><br />General Manager</p>'

// Distributed by http://www.hypergurl.com

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

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


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




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_test
var pausespeed=(pauseit==0)? copyspeed: 0

function populate_testimonials(){
if (iedom){
test_scroller=document.getElementById? document.getElementById("iescroller_testimony") : document.all.iescroller_testimony
//test_scroller.innerHTML="BLAH";
test_scroller.innerHTML=testimonial_content
test_scroller.style.top=parseInt(scrollerheight)+8+"px"
test_scroller.style.top="0px"
test_scroller.innerHTML=testimonial_content
//actualheight=test_scroller.offsetHeight
}
else if (document.layers){
ns_scroller_test=document.ns_scroller_test.document.ns_scroller_test4
ns_scroller_test.top=parseInt(scrollerheight)+8
ns_scroller_test.document.write(testimonial_content)
ns_scroller_test.document.close()
actualheight=ns_scroller_test.document.height
}
lefttime=setInterval("scrollTestScroller()",100)
}
//window.onload=populate

function scrollTestScroller(){

if (iedom){
if (parseInt(test_scroller.style.top)>(actualheight*(-1)+8))
test_scroller.style.top=parseInt(test_scroller.style.top)-copyspeed+"px"
else
test_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller_test.top>(actualheight*(-1)+8))
ns_scroller_test.top-=copyspeed
else
ns_scroller_test.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_testimony" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
//alert("divs");
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller_test">')
write('<layer name="ns_scroller_test2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
write('</ilayer>')
//alert("layers");

}
}
}
