// script créé par reant.net
var tableau = new Array(
"coucou! :-)",
"All your base are belong to us",
"meuh",
"carpe diem",
"why life?",
"there is no place like ::1", // IPv6 inside! ;)
"life's short. drink faster."
);
var variable = Math.floor(Math.random()*tableau.length);
document.writeln('<div style="position: absolute; top: 0px; right: 0px; color: SlateGrey; font-family: monospace; font-variant: small-caps; font-size: large; font-weight: bold;">// ' + tableau[variable] + '</div>');
