// JavaScript Document


var swidth=180;
//scroller's height
var sheight=120;
//scroller's speed 
var sspeed=5;
var restart=2;
var rspeed=2;
//scroller's pause 
var spause=3000;
//scroller's background
var sbcolor="#ffffff";

//messages: set your own; use as many as you'd like; set up Hyperlinks to
//URLs as you normally do: <a target=... href="... URL ...">..message..</a>;
var singletext=new Array();
singletext[2]='<a href="testimonials.php" class="ntdec" ><span class="whtxt" style="color:#2E8A2B; text-decoration:none;"><img src="./images/scroll_img_1.jpg" width="70" height="40"  align="left" hspace="2"/>Dear&nbsp;Devi, <br /> Such a great experinced we are very happy from Helembu trek that you did  organized for us. We have a lot of friends or colleagues who would like to go to Nepal and would like to enjoy .........</span></a>';

singletext[1]='<a href="testimonials.php" class="ntdec" ><span style="color:#2B538A;"><img src="./images/scroll_img_5.jpg" width="70" height="40"  align="left" hspace="2"/>Our trip in Nepal was fabulous thank you. You are a real professionnal of tourism and everything was wonderfull. I want to organise our Tibet trip with you and If you want reference your agency on several.....</span></a>';
singletext[0]='<a href="testimonials.php" class="ntdec" ><span style="color:#8A672B;"> <img src="./images/scroll_img_6.jpg" width="70" height="40"  align="left" hspace="2"/>The most impressive things that I can noticed about Adventure International, all trekkers get maximum flexibility to design portions of the trip to outfit being desires. For example: when I was the only one in my group......<a href="testimonials.php" class="whtxt" ">read more</a></span>';

singletext[3]='<a href="testimonials.php" class="ntdec" ><span  style="color:#B4253C;"><img src="./images/scroll_img_3.jpg" width="70" height="40"  align="left" hspace="2"/>The trek was very organized & professional; we were very happy with the service & would recommend Adventure International to our friends. We enjoy this trek so much; we already plan to return.............read more</span></a>';

singletext[4]='<a href="testimonials.php" class="ntdec" ><span  style="color:#392591;"><img src="./images/scroll_img_7.jpg" width="70" height="40"  align="left" hspace="2"/>We spent two month in Nepal. We had two beautiful treks in the Solukhumbu and in the Annapurna. What to say except it was just brilliant. Dear clients, I recommend you to.......<span></a>';
//singletext[...]='...';
//-- end Parameters and message -->

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

function start(){
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();}}