/* 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 = 8;
quotesthree = Math.floor (num_of_quotes * Math.random());

if (quotesthree==0) {
title="- Joanne Milne";
body="Learning about the biomechanics of human movement is fascinating and a lot of fun.";
}

if (quotesthree==1) {
title="- Joanne Milne";
body="[Klaus]... makes learning easy.";
}

if (quotesthree==2) {
title="- Sergei Penkov";
body="You always have a clear plan what you will do with the group and what the students can absorb.";
}

if (quotesthree==3) {
title="- Sergei Penkov";
body="Thank you for your lessons and inspiration.";
}

if (quotesthree==4) {
title="- Chris Condron, Rednose Productions";
body="[Klaus' unique teaching style] .. allows us to learn from directly experiencing the tango.";
}

if (quotesthree==5) {
title="- Melanie Gallagher";
body="Klaus is amazing to dance with as he makes everything flow and you feel like you are dancing on a cloud.";
}

if (quotesthree==6) {
title="- Julian Wright";
body="It is extremely enjoyable learning with Klaus as he has a great energy and a welcoming nature.";
}

if (quotesthree==7) {
title="- Julian Wright";
body="The manner in which you break down each move - you really feel the energy flows during the movement.";
}

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>');

