/*********************************** 
*   http://javascripts.vbarsan.com/ 
*   This notice may not be removed 
***********************************/ 

//scroller height 
var sheight=140; 

//background color: change to your own; 
var sbcolor="#ccffcc"; 

//scroller's speed: change to your own; 
var sspeed=1.25; 
var restart=sspeed; 
rspeed=sspeed; 


wholemessage='<strong>Investec</strong><br />"Very enjoyable - good to laugh together" <br /><br />';

wholemessage+='<strong>Merrill Lynch (now BlackRock)</strong><br />"Fun! Surprising and different."<br /><br />'; 

wholemessage+='<strong>BAT</strong><br />"Excellent staff and approach. Highly recommended for team building."<br /><br />'; 

wholemessage+='<strong>Trading Partners</strong><br />"I would always recommend you to anyone looking for a fun and different challenge."<br /><br />'; 

wholemessage+='<strong>BT Financial</strong><br />"Something different - great fun"<br /><br />'; 

wholemessage+='<strong>Spotless</strong><br />'; 
wholemessage+='"The Sword Fighting was the highlight of the conference.  It was unique and very well run"<br /><br />';

wholemessage+='<strong>Fortune 100 IT Company</strong><br />';
wholemessage+='"Great fun and well organised"<br /><br />';

wholemessage+='<strong>www.samsales.com.au</strong><br />';
wholemessage+='"Interesting and challenging...  We certainly recommend Sword Fighting International to organizations seeking a professionally managed team building and business coaching event with a difference!"<br /><br />'; 

wholemessage+='<strong>SAction Focus</strong><br />'; 
wholemessage+='"I can now see how fencing can help me keep fit as well as develop my strategic skills."<br /><br />'; 

wholemessage+='<strong>SeeFilmFirst on behalf of Disney</strong><br />'; 
wholemessage+='"The whole event was a resounding success"<br /><br />';

//wholemessage+='<strong>Spotless Services</strong><br />';
//wholemessage+='"the highlight of the conference"<br /><br />';

//wholemessage+='<strong>Trading Partners</strong><br />';
//wholemessage+='"I would always recommend you to anyone looking for a fun and different challenge"<br /><br />';



//-- end Parameters and message --> 

//-- begin: Scroller's Algorithm --> 

function scrollText(){ 
   if(document.getElementById)ns6marquee(document.getElementById('slider')); 
   else if(document.all)iemarquee(slider); 
   else if(document.layers)ns4marquee(document.slider1.document.slider2); 
} 

function iemarquee(whichdiv){ 
   iediv=eval(whichdiv); 
   iediv.style.pixelTop=sheight; 
   iediv.innerHTML=wholemessage; 
   sizeup=iediv.offsetHeight; 
   ieslide(); 
} 

function ieslide(){ 
   if(iediv.style.pixelTop>=sizeup*(-1)){ 
      iediv.style.pixelTop-=sspeed; 
      setTimeout("ieslide()",100); 
   }else{ 
      iediv.style.pixelTop=sheight;ieslide(); 
   } 
} 

function ns4marquee(whichlayer){ 
   ns4layer=eval(whichlayer); 
   ns4layer.top=sheight; 
   ns4layer.document.write(wholemessage); 
   ns4layer.document.close(); 
   sizeup=ns4layer.document.height; 
   ns4slide(); 
} 

function ns4slide(){ 
   if(ns4layer.top>=sizeup*(-1)){ 
      ns4layer.top-=sspeed; 
      setTimeout("ns4slide()",100); 
   }else{ 
      ns4layer.top=sheight; 
      ns4slide(); 
   } 
} 

function ns6marquee(whichdiv){ 
   ns6div=eval(whichdiv); 
   ns6div.style.top=sheight + 'px'; 
   ns6div.innerHTML=wholemessage; 
   sizeup=ns6div.offsetHeight; 
   ns6slide(); 
} 
function ns6slide(){ 
   var intHeight = parseInt(ns6div.style.top); 
   if(intHeight>=sizeup*(-1)){ 
      ns6div.style.top=(intHeight - sspeed) + 'px'; 
      setTimeout("ns6slide()",100); 
   }else{ 
      ns6div.style.top=sheight;ns6slide(); 
   } 
}