// JavaScript Document
<!-- Begin
var n = 10;
var ad = Math.floor(Math.random()*100000)%n + 1;

if (ad==1) {
textno="あなたの進んだ道は完璧！";
}
if (ad==2) {
textno="見方を変えるだけで、人生は完全に変わる";
}
if (ad==3) {
textno="未来はあなたを待っている！";
}
if (ad==4) {
textno="幸せの鍵を握るのはあなた";
}
if (ad==5) {
textno="自分を信じたら、心は穏やかになる";
}
if (ad==6) {
textno="あなたの願いを感じてみて";
}
if (ad==7) {
textno="夢に向かって集中しよう";
}
if (ad==8) {
textno="いちばんすてきなことが起こる";
}
if (ad==9) {
textno="幸せを選ぼう";
}
if (ad==10) {
textno="「信頼」は「希望」よりパワフル";
}

document.write(textno);
// End -->
