
var delay=5000 //set delay between message change (in miliseconds)
var fcontent=new Array()
begintag='' //set opening tag, such as font declarations
fcontent[0]='<span class="style3">"Gerry was able to save us an incredible amount of money!  We didn\'t realized how much we were overpaying in our Life Insurance!  Thanks to Insuranetoronto.com we are saving over $125 a month.  Thanks a million!"</span><br><span class="style7">Delia & Andrew / Orangeville<br></span><br><span class="style3">"I strongly recommend that you have Gerry Avram review and quote your insurance program. He SAVED us OVER 40% this year alone and I believe he can also help you!"</span><br><span class="style7"> G. Marinescu / North York<br></span>'
fcontent[1]='<span class="style3">"Gerry has served all my insurance needs for over 7 years.  He has always been responsive, friendly and professional.  Most important, they take my needs, economical and service, very seriously and have performed, in my opinion at the highest levels.  I have never even considered changing agents.  Great job and thank you."</span><br><span class="style7">M. Pitkow / Scarborough</span><br><br><span class="style3">"My experiences with Insurancetoronto.com have been very positive and I find Gerry to be a real pleasure to deal with.  He is competent and friendly which can be hard to find these days."</span><br><span class="style7">Floria Crista / Orangeville</span>'
fcontent[2]='<span class="style3">"What a pleasure it is to deal with a company like Insurancetoronto.com!  Always prompt, courteous, knowledgeable and most accommodating.  This applies to their entire office staff - A+."</span><br><span class="style7">Nicoleta & Florin Ivan</span><br><br><span class="style3">"I am pleased to say that this family run office has looked out for our needs for over six years.  It is comforting to know that I don\'t have to worry about best cost and proper coverage. Thank you for being there for us!"</span><br><span class="style7">Violeta and Victor / Woodbridge</span>'
fcontent[3]='<span class="style3">"The service provided by Gerry meant for me and my Family a lot. Customer satisfaction is the main goal of his activity."</span><br><span class="style7">Adrian & Tatzi / Toronto</span><br><br><span class="style3">"Extremely professional and knowledgeable! InsuranceToronto.com saved me time and money. They have always had prompt responses to questions or problems. "</span><br><span class="style7">Radu Focseneanu / Richmond Hill</span>'
fcontent[4]='<span class="style3">"Gerry managed to find for me the best deal that I could get on the market for Life Insurance! Tanks Gerry!"</span><br><span class="style7">Calin Bora / Toronto</span><br><br><span class="style3">"We ware only 6 Months in this new country when we bought our first house. We met Gerry a short time after that and he took the time to explain us the benefits of having life insurance. Also he found us a perfect product that protects our family and accumulates money tax sheltered. Thanks of his great services our family has piece of mind. Thanks a lot!"</span><br><span class="style7">Bogdan and Carmen / Burlington</span>'
fcontent[5]='<span class="style3">"Before we closed out life insurance policies with Gerry we ware heavily overpaying without being aware of it. For more then four years now we are happy customers. Gerry takes good care of all of our insurance needs. Thanks!"</span><br><span class="style7">John & Nia Stoenescu / Markham</span><br><br><span class="style3">"Excellent knowledge of the insurance marketplace and ability to present best coverage at most competitive premiums to the client.  Facilitates handling of any claim information between client and the insurer."</span><br><span class="style7">J Delton Plank / North York</span>'
fcontent[6]='<span class="style3">"I want to thank you personally for placing my insurance with a reliable company.  I do recommend you to all of my clients.  Thank you so much for all your help."</span><br><span class="style7">Steven Cotlar / Ajax</span><br><br><span class="style3">"There have been numerous times that other insurance agents have offered their services to our company.  But we have always turned them down due to the excellent customer service by InsuranceToronto.com"</span><br><span class="style7">Philip Heacock / <br>Heacock Builder Inc. Toronto </span>'
fcontent[7]='<span class="style3">"Insurance Toronto.com has impressed us with their very personal service, friendly staff and very competitive pricing.  Gerry has saved us money on our Group Employee Benefits, and provided superior service to us, above and beyond the normal service one would expect from an insurance agent.  I would recommend Insurance Toronto.com to anyone, especially those in business." </span><br><span class="style7">Rebecca Morano /<br> R & R Morano, Mississauga</span>'
closetag=''

var fwidth='166px' //set scroller width
var fheight='200px' //set scroller height

var fadescheme=0 //set 0 to fade text color from (white to black), 1 for (black to white)
var fadelinks=1  //should links inside scroller content also fade like text? 0 for no, 1 for yes.

///No need to edit below this line/////////////////

var hex=(fadescheme==0)? 255 : 0
var startcolor=(fadescheme==0)? "rgb(255,255,255)" : "rgb(0,0,0)"
var endcolor=(fadescheme==0)? "rgb(0,0,0)" : "rgb(255,255,255)"

var ie4=document.all&&!document.getElementById
var ns4=document.layers
var DOM2=document.getElementById
var faderdelay=0
var index=0

if (DOM2)
faderdelay=2000

//function to change content
function changecontent(){
if (index>=fcontent.length)
index=0
if (DOM2){
document.getElementById("fscroller").style.color=startcolor
document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
linksobj=document.getElementById("fscroller").getElementsByTagName("A")
if (fadelinks)
linkcolorchange(linksobj)
colorfade()
}
else if (ie4)
document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag
else if (ns4){
document.fscrollerns.document.fscrollerns_sub.document.write(begintag+fcontent[index]+closetag)
document.fscrollerns.document.fscrollerns_sub.document.close()
}

index++
setTimeout("changecontent()",delay+faderdelay)
}

frame=20;

function linkcolorchange(obj){
if (obj.length>0){
for (i=0;i<obj.length;i++)
obj[i].style.color="rgb("+hex+","+hex+","+hex+")"
}
}

function colorfade() {
// 20 frames fading process
if(frame>0) {
hex=(fadescheme==0)? hex-12 : hex+12 // increase or decrease color value depd on fadescheme
document.getElementById("fscroller").style.color="rgb("+hex+","+hex+","+hex+")"; // Set color value.
if (fadelinks)
linkcolorchange(linksobj)
frame--;
setTimeout("colorfade()",20);
}

else{
document.getElementById("fscroller").style.color=endcolor;
frame=20;
hex=(fadescheme==0)? 255 : 0
}
}

if (ie4||DOM2)
document.write('<div id="fscroller" style="border:0px solid black;width:'+fwidth+';height:'+fheight+';padding:2px"></div>')

window.onload=changecontent
