// JavaScript Document				  
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);
};

var number=rand(3)-1


if (number == 0) {
document.write("Stay connected with your neighbors&#8212;drop in at ")
document.write("<a href=http://www.longmontfyi.com/communityTC/>") 
document.write("LongmontFYI Community")
}



if (number == 1) {
document.write("Get a quick stock quote&#8212;visit ")
document.write("<a href=http://www.longmontfyi.com/tcBusiness/>") 
document.write("LongmontFYI Business")
}



if (number == 2) {
document.write("Find out what's happening this week&#8212;check out the ")
document.write("<a href=http://www.longmontfyi.com/entertainment/events.htm>") 
document.write("LongmontFYI Calendar")
}


