

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

if (quotes==0) {
author="William Butler Yeats";
body="How can we know the dancer from the dance?";
}

if (quotes==1) {
author="Agnes de Mille";
body="The truest expression of a people is in its dance and in its music.  Bodies never lie.";
}

if (quotes==2) {
author="Author Unknown";
body="You can dance anywhere, even if only in your heart.";
}

if (quotes==3) {
author="Ted Shawn";
body="Dance is the only art of which we ourselves are the stuff of which it is made. ";
}

if (quotes==4) {
author="Agnes de Mille";
body=" To dance is to be out of yourself.  Larger, more beautiful, more powerful.";
}

if (quotes==5) {
author="Charles Baudelaire";
body=" Dancing can reveal all the mystery that music conceals.";
}

if (quotes==6) {
author="Mata Hari";
body=" The dance is a poem of which each movement is a word.";
}


if (quotes==7) {
author="D.H. Lawrence";
body="We ought to dance with rapture that we might be alive... and part of the living, incarnate cosmos.";
}

if (quotes==8) {
author="Ruth St. Dennis";
body="I see dance being used as communication between body and soul, to express what is too deep to find for words.";
}

if (quotes==9) {
author="Hopi Indian Saying";
body="To watch us dance is to hear our hearts speak.";
}





document.write('<center><h3><i>');
document.write(''+ body +'');
document.write('</i><br>' + author);

document.write('</h3></center>');
