var highlight = new Array()
highlight[0] = "<p>The world is not defined<br>by the duality between light and dark,<br>but by that between<br>perception and non-perception.</p><p>Radiation is everywhere.<br>We perceive only a small slice<br>of the entire spectrum<br>and call what we see light<br>and all the rest dark.</p><p>There is no such thing<br>as the absence of light.</p><p align='right'><a href='words.htm'>bits</a></p>"
highlight[1] = "<p><a href='http://www.blueanchor.org/gallery_favs.htm'><img src='images/butterfly_med.jpg' height='200px' width='279px' border='0' alt='butterfly'></a></p><p align='right'><a href='http://www.blueanchor.org/gallery_favs.htm'>&ldquo;Butterfly&rdquo; - favorites</a></p>"
highlight[2] = "<p><a href='http://www.blueanchor.org/multi/flash/flashindex.html'><img src='multi/bird.jpg' height='300px' width='218px' border='0' alt='bird'></a></p><p align='right'><a href='http://www.blueanchor.org/multi/flash/flashindex.html'>Bird</a> - a flash movie</p>"
highlight[3] = "<p>I walk on ice at zero G.<br>Neither footing nor falling have I.<br>Through crowded ruins I walk--<br>Passage through Rome.</p><p>I am the tree that has fallen.<br>No one here has seen.<br>I ponder my existence.<br>I follow the wind.<br>Anonymous gifts sustain me.<br>I walk through parking lots considering lillies.</p><p align='right'><a href='http://www.blueanchor.org/words/poetry/passage.html'>Passage through Rome</a> - a poem</p>"
highlight[4] = "<p>This artistic thought, this thinking from the whole, is not the mere arrangement of data into different forms and combinations. It deals with psychic forces. These forces can be organized, evaluated and modified, but the resulting expression may or may not include logical consistency. Its measure is not whether it is correct as in some sort of test question with a right answer, but whether it is true. An idea is not only a collection of words. It is a form of energy.</p><p align='right'><a href='http://blueanchor.org/wordpress/'>Notes on the Endeavor</a> - essays</p>"

function random_highlights()
{
var r=Math.random()
if (r<0.20) 
{
return highlight[0];
}
else if (r>=0.20 && r<0.4)
{
return highlight[1];
}
else if (r>=0.4 && r<0.6)
{
return highlight[2];
}
else if (r>=0.6 && r<0.8)
{
return highlight [3];
}
else
{
return highlight[4];
}
}
function new_highlight()
{document.getElementById("highlights").innerHTML = random_highlights();
}
