var swidth=230;

//scroller's height
var sheight=100;


//scroller's speed 
var sspeed=2;
var restart=sspeed;
var rspeed=sspeed;

//scroller's pause 
var spause=0;

//scroller's background
var sbcolor="#ffffff";

var singletext=new Array();
singletext[0]='<div class=tan>"Ever since I can remember I have suffered from Anxiety Syndrome and Panic Attacks and for years have tried anything and everything to make it go away. Drugs from the doctor, alcohol, hypnotherapy, yoga, meditation and so it goes on. In desperation, after a health scare and not being mentally or physically able to turn up at the hospital for treatment I found Tina by searching on the internet for an associate of Paul McKenna as it was his CD that helped me stop smoking. After just one session I was able to turn up at the hospital without even one butterfly in my tummy. For me this was a miracle after being plagued by fear since childhood. I do not hesitate to recommend Tina to any of my friends and colleagues in need of help with fears and phobias and strongly suggest you contact her too. It will change you life."<br> - Barbara, Croydon.</div>';
singletext[1]='<div class=tan>"First of all i wanted to thank you for helping me. I have noticed a DRAMATIC difference in me which i never thought possible. On Saturday I had a really good day, all the girls asking me questions which I handled really well. As i was answering the questions I felt a wave of calm go through my body. I then went out to lunch with the girls something I havent had the courage to do in nearly a year and it was great."<br> - Natalie</div>';
//singletext[2]='<div class=tan>"Businesses need to be aware that their biggest threat is not organised criminal gangs, but their own “trusted” internal management and people they do business with everyday. Management fraud accounts for 46 per cent of fraud cases and third party fraud accounts for 32 per cent, costing businesses a total of £541m, which makes up 77 per cent of all reported fraud in the first half of 2008."</div>';
//singletext[3]='<div class=tan>"A recent survey of 1500 employers found that 71% had encountered lies on CVs and 49% said it was a serious problem when recruiting staff."- The Guardian.</div>';
//singletext[4]='<div class=tan>"Illegal working cannot be tackled by the Government alone and its every employers duty to ensure that they conduct the proper checks on prospective employees." - UK Border and Immigration Authority</div>';
//singletext[...]='...';
//-- end Parameters and message -->

//-- begin: Scroller's Algorithm -->
var ii=0;
function goup(){if(sspeed!=rspeed*16){sspeed=sspeed*2;restart=sspeed;}}

function startScroll(){
if(document.getElementById){ns6div=document.getElementById('iens6div');ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[0];sizeup=ns6div.offsetHeight;ns6scroll();}
else 
if(document.layers){ns4layer=document.ns4div.document.ns4div1;ns4layer.top=sheight;ns4layer.document.write(singletext[0]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}
else 
if(document.all){iediv=iens6div;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[0];sizeup=iediv.offsetHeight;iescroll();}}
function iescroll(){if(iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){iediv.style.pixelTop=0;setTimeout("iescroll()",spause);}else 
if(iediv.style.pixelTop>=sizeup*-1){iediv.style.pixelTop-=sspeed+"px";setTimeout("iescroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[ii];sizeup=iediv.offsetHeight;iescroll();}}
function ns4scroll(){if(ns4layer.top>0&&ns4layer.top<=sspeed){ns4layer.top=0;setTimeout("ns4scroll()",spause);}else 
if(ns4layer.top>=sizeup*-1){ns4layer.top-=sspeed;setTimeout("ns4scroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;ns4layer.top=sheight;ns4layer.document.write(singletext[ii]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}}
function ns6scroll(){if(parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){ns6div.style.top=0;setTimeout("ns6scroll()",spause);}else 
if(parseInt(ns6div.style.top)>=sizeup*-1){ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";setTimeout("ns6scroll()",100);}
else{if(ii==singletext.length-1)ii=0;else ii++;
ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[ii];sizeup=ns6div.offsetHeight;ns6scroll();}}