/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 11;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="- Susanne Turner";
body="Klaus has a unique and creative style.";
}

if (quotes==1) {
title="- Susanne Turner";
body="I would recommend him to anyone who wants to seriously learn tango but also have fun and enjoy the experience.";
}

if (quotes==2) {
title="- George Ecet";
body="You were able to teach the essential beginner's moves in 4 weeks! - and I felt the freedom to navigate the dance floor to any music.";
}

if (quotes==3) {
title="- Karen Garnett";
body="Thankyou Klaus and Ulla for opening my eyes to Tango Nuevo.";
}

if (quotes==4) {
title="- Karen Garnett";
body="When I met you I was already a lover of Tango, however you introduced me to a new element that is truly fun and creative.";
}

if (quotes==5) {
title="- Karen Garnett";
body="The music you play is so cool, fun and interpretive, it makes sitting down impossible.";
}

if (quotes==6) {
title="- Karen Garnett";
body="Your style will guarantee and encourage the younger generation to get involved in Tango.";
}

if (quotes==7) {
title="- Maire Ni Murchada";
body="[the classes] are well planned and Klaus and Ulla are very attentive to detail and each learner's particular needs.";
}

if (quotes==8) {
title="- Maire Ni Murchada";
body="FunkyTango classes are conducted in an atmosphere of fun and achievement.";
}

if (quotes==9) {
title="- Maire Ni Murchada";
body="I heartily recommend their expertise.";
}

if (quotes==10) {
title="- Matthew Thomson, Ruedisima Latin Dance Company";
body="Your passion for tango and dancing is infectious! Looking forward to seeing you again when I get back from Buenos Aires.";
}

document.write('<div align=left>');

document.write('<em>' + '&quot;' + body + '&quot;' + '</em><br><br>');
document.write('</div>');
document.write('<div align=right>');
document.write('' + title + '<br>' +'');
document.write('</div>');

