function random_dixit(){
var dixit = new Array();

// dixitArray
dixit[1] = "\"I've been a fighter, I think, since the day I was born\""
dixit[2] = "\"The only pressure I feel is the pressure I put on myself\""
dixit[3] = "\"I am a fighter. Others give up but I don't. I just dig deeper\""
dixit[4] = "\"I put myself on the line anyway and I have to give myself credit for that...even if I went out the loser\""
dixit[5] = "\"It's in my nature not to give up or to let anybody stop me from doing what I want to do\""
dixit[6] = "\"Who would have thought I would ever make it here?. Dreams do come true. You have to believe in yourself\""
dixit[7] = "\"Tennis is what I do and is part of who I am\""
dixit[8] = "\"I wouldn't be here if it wasn't for my father. Today he was looking on more as my dad than as my coach\""
dixit[9] = "\"The reason I came back is because I love tennis and always will do\""
dixit[10] = "\"Doing what I do out there, fighting and going crazy, that's my self-expression. That's my art\""
dixit[11] = "\"I get on a mission to prove myself. As soon as people write me off...I'm like, 'I'll show you'\""

var ry=Math.floor(Math.random()*dixit.length);
if (ry==0)
ry=1;
document.write('<span class=sottomenu>'+dixit[ry]+'</span>');
}

