function random_dixit(){
var dixit = new Array();

// dixitArray
dixit[1] = "\"Everyone told me to pass on Speed because it was a bus movie\""
dixit[2] = "\"Sure, I'm an optimistic, joyous person, but I'm also afraid and insecure\""
dixit[3] = "\"I mean, anybody can look cute after about three hours in hair and makeup, with a great set of makeup tools and a great haircutter\""
dixit[4] = "\"I love humor. I always will fall back on humor. That's something that I think you can't ever get enough of and, if it's done well, it's great. When it's bad, it's horrible\""
dixit[5] = "\"I've always been very skeptical about marriage, because I only want to do it once; I want to do it the right way\""
dixit[6] = "\"The older I get, the less mature I get and I like that. I just intend to channel my behaviour to benefit myself as well as others\""
dixit[7] = "[Sulla chirurgia plastica] \"If you do it, then do it well. Make sure you come out looking like yourself. You're comfortable being put under a knife and disembowelled? Great!\""
dixit[8] = "[Sullo status di star] \"It's nothing. It's money. It's people recognizing you from the covers of magazines. But it doesn't mean anything\""
dixit[9] = "\"Always choose people that are better than you. Always be a student. Once you find yourself to be a teacher, you've lost\""
dixit[10] = "\"Women should do a lot more fighting. I don't think it's fair that we can't get into good bar fight once in a while\""
dixit[11] = "\"I want to make sure that when people say 'girl next door' or 'sweetheart', they know that sweetheart is gonna be a bitch some days\""
dixit[12] = "\"I don't think there's ever what could be called a 'chilled state' in my head\""
dixit[13] = "\"The Acadamy Awards shouldn't even nominate Meryl Streep anymore. She should just be given an award every year. There should just be the Meryl Streep category\""
dixit[14] = "\"I'd rather take risks than make something that's cookie cutter\""
dixit[15] = "\"Why do you need one? I don't understand why there needs to be a love interest to make women go see a film. I think society sort of makes us feel that way - that if you don't have a guy, you're worthless\""
dixit[16] = "[Sulla maternità] \"If I'm blessed with that, I hope I am the best version of me that I can possibly be\""

var ry=Math.floor(Math.random()*dixit.length);
if (ry==0)
ry=1;
document.write('<span class=sottomenu>'+dixit[ry]+'</span>');
}


