<!--
fortune = new Array();
fortune[0] = "My fishing is at once an endless resource of delight and an act of a small rebellion not because I regard fishing as being so terrible important, but because I suspect that so many of the other concerns of men are equally unimportant and not nearly so much fun. "
var now=new Date();

function getFortune() {
        return fortune[Math.floor(Math.random() * fortune.length)];
}

//-->