<!--


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);
};

function makequote() {

if (document.images["quote"]) {

document.images["quote"].src='http://devry.jtpr.net/jtpr/images/page/quote_'+rand(7)+'.gif';

}

};


// end central randomizer. -->







