<!--
rnd.today=new Date();rnd.seed=rnd.today.getTime();
function rnd() { rnd.seed = (rnd.seed*9301+49297) % 233280; return rnd.seed/(233280.0); }
function rand(number) { return Math.ceil(rnd()*number); }
//-->

<!--
// to add another image to the rotation, increase the number found in "rand(x) by 1
document.write('<img src="../images/rotate' + rand(4) + '.jpg" width=240 height=102>');
//-->