// JavaScript Document
//==================================================
// Remember you need to use special code for characters for this stuff to display properly - here's some examples
// - &#8211;
// ' &#8217;
// & &amp;
//==================================================
<!--

ss = new slideshow('ss');
ss.prefetch = 3;
ss.timeout = 7000;


s = new slide();
s.src = 'images/frontpage-testimonial-rotating/01marie-and-mufajel.jpg';
s.link = 'testimonials.shtml';
s.title = 'Marie &amp; Mufajel';
s.text = 'Thank you for choreographing our dance and getting us through the lessons so that we didn&#8217;t fall to pieces on the night!! It was a lot of fun just learning the dance and it&#8217;s great to watch the video and see ourselves actually doing a routine rather than shuffling around the dance floor. Our dance went really well &#8211; thank you for your excellent tutoring!<p><B>Marie &amp; Mufajel</B>';
ss.add_slide(s);

s = new slide();
s.src = 'images/frontpage-testimonial-rotating/02david-and-amanda.jpg';
s.link = 'testimonials.shtml';
s.title = 'David &amp; Amanda';
s.text = 'Our first dance routine came as a complete surprise to everyone and went down brilliantly. Neither of us had ever danced before but, in just 5 lessons, Suzy managed to get us from a flat-footed fidget to a fully-fledged foxtrot! More importantly, we really enjoyed the whole experience, from learning something new to performing it on our special day in front of an astounded audience.<p><B>David &amp; Amanda</B>';
ss.add_slide(s);

s = new slide();
s.src = 'images/frontpage-testimonial-rotating/03jo-and-anshu.jpg';
s.link = 'testimonials.shtml';
s.title = 'Jo &amp; Anshu';
s.text = 'Our dance went great and everyone was very impressed. Thanks for all your help &#8211; we really enjoyed the lessons and will definitely be back for your Winter Workshops.<p><B>Jo &amp; Anshu</B>';
ss.add_slide(s);

if (true) ss.shuffle();

// The following loop sets an attribute for all of the slides.
// This is easier than setting the attributes individually.

for (var i=0; i < ss.slides.length; i++) {

  s = ss.slides[i];
}




//-->

