/*********************************** 
*   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='Spotless National Manager for Organisational Development<br />'; 

wholemessage+='<strong>"The Sword Fighting was the highlight of the conference.  It was unique and very well run"</strong><br /><br />';

wholemessage+='Seefilmfirst on behalf of Disney<br />'; 

wholemessage+='<strong>"The whole event was a resounding success"</strong><br /><br />';

wholemessage+='Merrill Lynch (now BlackRock)<br /><strong>"Fun! Surprising and different"</strong><br /><br />'; 

wholemessage+='BT Financial<br /><strong>"Something different - great fun"</strong><br /><br />'; 

wholemessage+='<a href=\"http://www.samsales.com.au\" style=\"font-size:90%\" target=\"_blank\">www.samsales.com.au</a>:<br />'; 

wholemessage+='<blockquote>"The team at SAM Sales and Marketing very much enjoyed their hybrid sport - business motivation session with Sword Fighting International. We found fencing to be most interesting and challenging, requiring a high degree of concentration and finesse, which we admit, was somewhat lacking on our part! Nonetheless Sword Fighting International soon had us fencing, thinking hard and having fun!"</blockquote><br /><br />'; 

wholemessage+='<blockquote>"We certainly recommend Sword Fighting International to groups or organizations who are seeking a professionally managed team building and business coaching event with a difference!"</blockquote><br /><br />'; 

wholemessage+='Sue Daniels Career Coach at Action Focus:<br />'; 

wholemessage+='<blockquote>"Nick delivers an interesting and fun event. I can now see how fencing can help me keep fit as well as develop my strategic skills."</blockquote><br /><br />'; 

wholemessage+='From the students of Katherine Jackson, Head of Health and Physical Education, Leongatha Secondary College:<br />'; 

wholemessage+='<blockquote>"Fencing was a good experience. It was really fun."</blockquote><br /><br />'; 

wholemessage+='<blockquote>"I found fencing very worthwhile as it explored a different way of being active."<br /><br />'; 
wholemessage+='<blockquote>"It was worthwhile learning a new sport and one I have never tried before. Thanks."<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(); 
   } 
}