<!-- Random message
function makeArray(len) {
	for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

var ideas = new makeArray(5);
ideas[0] = "Always peel the outer skin of a grapefruit or orange before juicing.  Leave as much of the white rind on the fruit as possible.";
ideas[1] = "When juicing a melon, like cantaloupe or watermelon, juice everything including the rind.";
ideas[2] = "Go easy on juicing vegetables.  Except for carrot or celery, vegetable juice should be no more than 25 percent of the drink.";
ideas[3] = "Unsure what to juice?  Keep it simple.  Carrots, apple and a stalk of celery always works for a general health tonic.";
ideas[4] = "Food is only as good as its ingredients.  Ask questions.";


function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}
var now = new Date( )
var seed = now.getTime( ) % 0xfffffff 

//-->